add bootstrap
This commit is contained in:
@ -4,7 +4,16 @@
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<title>{{ title }}</title>
|
||||
{% if title %}
|
||||
<title>{{ site.title }} - {{ title }}</title>
|
||||
{% else %}
|
||||
<title>{{ site.title }}</title>
|
||||
{% endif %}
|
||||
{% if description %}
|
||||
<meta name="description" content="{{ description }}">
|
||||
{% else %}
|
||||
<meta name="description" content="{{ site.description }}">
|
||||
{% endif %}
|
||||
</head>
|
||||
<body>
|
||||
<header>{% include 'partials/header.njk' %}</header>
|
||||
@ -15,4 +24,5 @@
|
||||
</main>
|
||||
<footer>{% include 'partials/footer.njk' %}</footer>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
|
Reference in New Issue
Block a user