diff --git a/.vs/alphazero-official.github.io/v16/.suo b/.vs/alphazero-official.github.io/v16/.suo index 8b6e9d6..005cb54 100644 Binary files a/.vs/alphazero-official.github.io/v16/.suo and b/.vs/alphazero-official.github.io/v16/.suo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index f94a0a8..0eb9ff9 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/_includes/footer.html b/_includes/footer.html index 44c86c8..ccd9ddb 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -14,10 +14,12 @@ +

{% render_time %}

- + diff --git a/_plugins/rendertime.rb b/_plugins/rendertime.rb new file mode 100644 index 0000000..60d25d4 --- /dev/null +++ b/_plugins/rendertime.rb @@ -0,0 +1,15 @@ +module Jekyll + class RenderTimeTag < Liquid::Tag + + def initialize(tag_name, text, tokens) + super + @text = text + end + + def render(context) + "#{@text} #{{ Time.now | date_to_xmlschema }}" + end + end +end + +Liquid::Template.register_tag('render_time', Jekyll::RenderTimeTag) \ No newline at end of file diff --git a/_posts/2023-07-14-hey.md b/_posts/2023-07-14-hey.md index f86973b..264e876 100644 --- a/_posts/2023-07-14-hey.md +++ b/_posts/2023-07-14-hey.md @@ -9,7 +9,7 @@ comments: true More work. I should honestly be working on stuff like the game, but this is a nice change of pace. Today I: -- Further cleaned up the footer area, adding most of our social links + the GitHub source repo. +- Further cleaned up the footer area, adding most of our social links + the GitHub source repo. (also added the page render time) - Added text scrolling (typewriter) to the randomised home message - Added //THE LINE// into most pages to separate the title and content. - Updated all up posts up to now so they include a comment section