about summary refs log tree commit diff
path: root/templates/base.html
blob: b903da3b3a2d17f776976a109757a4b3f44d56da (plain) (blame)
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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ lang }}" xml:lang="{{ lang }}">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
    <link rel="canonical" href="{{- current_url|safe -}}" />
    <link rel="stylesheet" href="/css/custom.css" />
    <link rel="stylesheet" href="/css/carousel.css" />

    <meta name="author" content="{{- config.author -}}" />
    <meta name="description" content="{%- block description -%}{{- config.description -}}{%- endblock description -%}" />
    <link rel="alternate" type="application/atom+xml" title="Blog posts" href="{{ get_url(path="/feed.xml", trailing_slash=false) }}" />
    <script src="/js/carousel.js"></script>

    <title>{% block title %}{{- config.title -}}{% endblock title %}</title>
  </head>

  <body>
    <div class="container">
      <nav class="menu">
	<ul>
	  <li><a href="/">Home</a></li>
	  <li><a href="/blog">Blog</a></li>
	  <li><a href="/notes">Notes</a></li>
	  <li><a href="/about">About</a></li>
	  <li><a href="https://git.fcuny.net">Code</a></li>
	</ul>
      </nav>

      <div class="content">
	{% block content %}{% endblock content %}
      </div>
    </div>
  </body>

</html>