Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2023-07-14 UPDATE patch
  • Loading branch information
alphazero-official committed Jul 14, 2023
1 parent 919bb26 commit a28db18
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 2 deletions.
Binary file modified .vs/alphazero-official.github.io/v16/.suo
Binary file not shown.
Binary file modified .vs/slnx.sqlite
Binary file not shown.
4 changes: 3 additions & 1 deletion _includes/footer.html
Expand Up @@ -14,10 +14,12 @@ <h2 class="footer-heading">&copy; {{ site.title | escape }} 2023</h2>
<ul class="contact-list">
{%- if site.email -%}
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>

{%- endif -%}
</ul>
<p>{% render_time %}</p>
</div>

</div>

</div>
Expand Down
15 changes: 15 additions & 0 deletions _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)
2 changes: 1 addition & 1 deletion _posts/2023-07-14-hey.md
Expand Up @@ -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. <font color="#AAAAAA">(also added the page render time)</font>
- Added text scrolling (typewriter) to the randomised home message
- Added //<font color="#DDDDDD">THE LINE</font>// into most pages to separate the title and content.
- Updated all up posts up to now so they include a comment section
Expand Down

0 comments on commit a28db18

Please sign in to comment.