diff --git a/content/press.md b/content/press.md new file mode 100644 index 0000000..b1d0e4b --- /dev/null +++ b/content/press.md @@ -0,0 +1,5 @@ +--- +title: Press Kit +--- + +> **Evan Pratten** is a Canadian Software Developer and Musician. \ No newline at end of file diff --git a/sass/styles/components/footer.scss b/sass/styles/components/footer.scss index b7c9cea..a5ce5b6 100644 --- a/sass/styles/components/footer.scss +++ b/sass/styles/components/footer.scss @@ -1,3 +1,6 @@ .footer { text-align: center; + p { + margin:0; + } } diff --git a/templates/components/footer.html b/templates/components/footer.html index 53d573d..12c122d 100644 --- a/templates/components/footer.html +++ b/templates/components/footer.html @@ -10,4 +10,9 @@ Copyright © 2017 - {{ now() | date(format="%Y") }} Evan Warren Pratten
+ {# #} \ No newline at end of file diff --git a/templates/shortcodes/years_since.html b/templates/shortcodes/years_since.html new file mode 100644 index 0000000..70c6047 --- /dev/null +++ b/templates/shortcodes/years_since.html @@ -0,0 +1,4 @@ +{% set year_start = year | int %} +{% set year_end = now() | date(format="%Y") | int %} + +{{ year_end - year_start }} \ No newline at end of file