diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html index f689bf3..43b0b77 100644 --- a/templates/base.html +++ b/templates/base.html @@ -14,6 +14,7 @@ <div class="main-container"> <div class="header-container"> <h1><a href="/">Yaroslav de la Peña Smirnov</a></h1> + <hr> </div> {% block page %} <div class="content-container"> @@ -21,8 +22,23 @@ {% endblock %} </div> <div class="sidebar-container"> - <p>Hello, my name is Yaroslav de la Peña Smirnov. Welcome to my weblog.</p> - <a href="/weblog/archive">Archive</a> + <p>Hello, my name is Yaroslav de la Peña Smirnov, welcome to my + weblog. Sometimes I write software, sometimes I might write my mind + here. </p> + <div class="links-container"> + <a href="https://github.com/Yaroslav-95" title="GitHub"><span class="icon"></span></a> + <a href="https://git.yaroslavps.com/yaroslav" title="Git server"><span class="icon"></span></a> + <a href="/rss.xml" title="RSS feed"><span class="icon"></span></a> + </div> + <h3>Navigation</h3> + <ul class="navigation-list"> + <li><a href="/">Landing page</a></li> + <li><a href="/weblog/">Weblog ~</a></li> + <li><a href="/weblog/archive">Weblog archive</a></li> + </ul> + <h3>Contact</h3> + <p>If you want to tell me something, you can contact me by email at:</p> + <a href="mailto:contact@yaroslavps.com">contact@yaroslavps.com</a> </div> {% endblock %} </div> |