DEVELOPMENT ENVIRONMENT

~liljamo/dashboard-zola

dashboard-zola/templates/layouts/base.html -rw-r--r-- 441 bytes
042c925dJonni Liljamo fix: pbs port 9 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>{{ config.title }}</title>

    <link rel="stylesheet" href="/css/style.css"/>
  </head>
  <body>
    <main class="flex flex-col items-center h-full min-h-screen">
      <div class="max-w-5xl min-w-xs p-2">
          {% block content %} {% endblock %}
      </div>
    </main>
  </body>
</html>