Skip to content

Commit

Permalink
Merge pull request #620 from naher94/development
Browse files Browse the repository at this point in the history
Syntax Fix
  • Loading branch information
naher94 authored Feb 10, 2024
2 parents 9468c40 + b7571db commit 795ff33
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: > # this means to ignore newlines until "baseurl:"
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://rehanbutt.com" # the base hostname & protocol for your site
version: 7.10.1
version: 7.10.2
version-naming: [Apricot, Blackcurrent, Coconut, Dragonfruit, Elderberry, Fig, Guava]

# Build settings
Expand Down
2 changes: 1 addition & 1 deletion _year-in-review/2019.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
year: 2019
color: "linear-gradient(90deg, #B4EC51 0%, #53A0FD 50%, #3023AE 100%)"
color: "linear-gradient(90deg, #B4EC51 0%, #53A0FD 50%, #3023AE 100%);"
---
4 changes: 2 additions & 2 deletions _year-in-review/2020.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
year: 2020
color: "linear-gradient(120deg, #f79868 0%, #f15f63 100%)"
color-dark: "linear-gradient(120deg, #7c4c34 0%, #793032 100%)"
color: "linear-gradient(120deg, #f79868 0%, #f15f63 100%);"
color-dark: "linear-gradient(120deg, #7c4c34 0%, #793032 100%);"
---
Binary file modified img/photography/.DS_Store
Binary file not shown.
Binary file modified img/photography/istanbul-2023/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h2>Year in Review <span class="time-travel">a little bit of time travel</span><
<div class="cell small-6 medium-4">
<a href="https://{{ year.year | append: ".rehanbutt.com" }}" target="_blank" rel="noopener">
<div class="year-container">
<div class="year-square" style="background: {{year.color}};">
<div class="year-square" style="background: {{year.color}}">
<div class="overlay">
</div>
<svg class="" viewBox="0 0 83 50">
Expand Down
4 changes: 2 additions & 2 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,11 @@ function dayNames() {
function holidays() {
return {
"1:1": "Happy New Year!",
"1:22": "Happy Lunar New Year!",
"2:10": "Happy Lunar New Year!",
"2:23": "Happy 'Day I Wrote This Code' Day!",
"2:29": "Happy Leap Day!",
"5:4": "May the 4th be with you!",
"7:22": "Happy Mango Day! πŸ₯­",
"10:16": "Happy 100th Mickey!",
"10:31": "Happy Halloween! πŸŽƒ",
"11:23": "Happy Thanksgiving! πŸ¦ƒ",
"11:29": "Happy Hanukkah!",
Expand Down Expand Up @@ -226,6 +225,7 @@ function getHappyDayString() {
getHappyDayString();
///////////////////////////////////////////// End of Happy Day Label

///////////////////////////////////////////// Start of Copy to Clipboard
function copyToClipboard(link,clickedItem) {
if (navigator && navigator.clipboard && navigator.clipboard.writeText){
console.log("clickedItem", clickedItem);
Expand Down

0 comments on commit 795ff33

Please sign in to comment.