diff --git a/Gemfile b/Gemfile index 57462b1..2aee9db 100644 --- a/Gemfile +++ b/Gemfile @@ -9,5 +9,6 @@ group :jekyll_plugins do gem 'jekyll-redirect-from' gem 'jekyll_flexible_include' gem "kramdown-syntax-coderay", "~> 1.0" + gem "jekyll-last-modified-at" end diff --git a/_config.yml b/_config.yml index 4005d0c..463626d 100644 --- a/_config.yml +++ b/_config.yml @@ -33,6 +33,7 @@ plugins: - jekyll-redirect-from - flexible_include - kramdown-syntax-coderay + - jekyll-last-modified-at feed: diff --git a/_includes/footer.html b/_includes/footer.html index 8eb9ea2..dd4681c 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,7 +1,9 @@ \ No newline at end of file diff --git a/_sass/footer.scss b/_sass/footer.scss index b47766c..e36a23f 100644 --- a/_sass/footer.scss +++ b/_sass/footer.scss @@ -1,31 +1,27 @@ - // Padding to keep the keep the content to the right of the header footer { - max-width: 560px; - margin-left: 240px; - padding-left: 30px; - padding-bottom: 10vh; + max-width: 560px; + margin-left: 240px; + padding-left: 30px; + padding-bottom: 10vh; - display: flex; - flex-direction: row; - justify-content: center; - gap: 0.5em; - - a { - text-decoration: none; - } + display: flex; + flex-direction: row; + justify-content: center; + gap: 0.5em; + a { + text-decoration: none; + } } -@media - only screen and (max-width: $horizontal_breakpoint), - only screen and (max-height: $vertical_breakpoint) - { - footer { - padding-top: 10px; - padding-left: 20px; - padding-right: 20px; - margin: auto; - justify-content: center; - } -} \ No newline at end of file +@media only screen and (max-width: $horizontal_breakpoint), + only screen and (max-height: $vertical_breakpoint) { + footer { + padding-top: 10px; + padding-left: 20px; + padding-right: 20px; + margin: auto; + justify-content: center; + } +}