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

bug: fix age bug

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