diff options
Diffstat (limited to 'templates/blog/home.html')
| -rw-r--r-- | templates/blog/home.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/templates/blog/home.html b/templates/blog/home.html index fd7de6b7..739c5227 100644 --- a/templates/blog/home.html +++ b/templates/blog/home.html @@ -1,9 +1,13 @@ {% extends 'blog/partials/base.html' %} {% block content %} {% load static %} +{% load i18n %} <link rel="stylesheet" href="{% static 'css/home.css' %}"> <div id="welcome" class="mtctitem"> + {% url 'blog:user_activity' 'bobby' as bobby_profile_url %} + {% url 'blog:register' as register_url %} + {% blocktrans %} <p> - Welcome to the home of <b>Shifoo</b> (previously <i>That Computer Scientist</i>). My name is <a href="{% url 'blog:user_activity' 'bobby' %}">@bobby</a>, and this is my personal + Welcome to the home of <b>Shifoo</b> (previously <i>That Computer Scientist</i>). My name is <a href="{{ bobby_profile_url }}">@bobby</a>, and this is my personal website. I aim to build a retro looking personal website, where I share my thoughts, ideas, and experiences through articles, and will showcase some cool nostalgic features and tools. </p> <p> @@ -11,8 +15,9 @@ </p> <p> There's also a some of <a href="#fun-stuff">fun stuff</a> you can find in the sidebar, that you can play around with. I will be adding more in the not so distant future. - Also, To participate around various sections of the site, you will need to <a href="{% url 'blog:register' %}">register</a> for an account. I hope you enjoy your stay here. + Also, To participate around various sections of the site, you will need to <a href="{{ register_url }}">register</a> for an account. I hope you enjoy your stay here. </p> + {% endblocktrans %} <div id="chatbox"> <div id="messages"></div> <textarea id="chatbox-input" placeholder="Type your message here... (⏎ to send)"></textarea> |
