aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: ccb167a6c5af42519e7bf423e7ae420afc732e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1" name="viewport">
    <title>
      {% block title %}
      {{ config.title }}
      {% endblock %}
    </title>
    <link rel="stylesheet" href="{{ get_url(path="css/yaroslavps.css") }}">
    <link rel="icon" type="image/png" href="{{ get_url(path="favicon32x32.png") }}">
    <link rel="icon" type="image/png" href="{{ get_url(path="favicon64x64.png") }}">
    {% block extrahead %}
    {% endblock %}
  </head>
  <body>
    <div class="main-container">
      {% block page %}
        <div class="header-container">
          {% block header %}
          <h1><a href="/">Yaroslav de la Peña Smirnov</a></h1>
          {% endblock %}
        </div>
        <div class="content-container">
          {% block content %}
          {% endblock %}
        </div>
        <div class="sidebar-container">
          <div class="sticky-wrapper">
            <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="/feed.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>
        </div>
      {% endblock %}
    </div>
  </body>
</html>