the home site for me: also iteration 3 or 4 of my site

bug: fix age bug

+4 -4
+3 -3
content/_index.md
··· 14 14 > init.ts 15 15 ```ts 16 16 const kieran = { 17 - name: "kieran klukas" 18 - age: {{ age(length=2) }} 19 - education: ["Homeschooled", "Dual Enrollment"] 17 + name: "kieran klukas", 18 + age: {{ age(length=2 comma=true) }} 19 + education: ["Homeschooled", "Dual Enrollment"], 20 20 favFoods: ["lo mein", "bacon fried rice", "pretty much any meat"] 21 21 } 22 22 ```
+1 -1
templates/shortcodes/age.md
··· 1 - {% set time = now() | date(format="%s") | int - 1209254400 %}{{ (time / 31536000) | round(method="floor", precision=length) }} 1 + {% set time = now() | date(format="%s") | int - 1209254400 %}{{ (time / 31536000) | round(method="floor", precision=length) }}{% if comma %},{% endif %}