This commit is contained in:
WickedJack99
2022-09-26 00:28:02 +02:00
parent caba08bdf7
commit 9d93e63a5a
16 changed files with 128 additions and 4 deletions

View File

@@ -3,11 +3,12 @@
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="{{ '/website/assets/css/' | append: page.css_file }}">
</head>
<body>
{% include navigation.html %}
{{ content }}
{% include footerNavbar.html %}
{% include footerNavbar.html %} {% include socialMedia.html %}
</body>
</html>

View File

@@ -3,11 +3,12 @@
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="/website/assets/css/law.css">
</head>
<body>
{% include navigation.html %}
{{ content }}
{% include footerNavbar.html %}
{% include footerNavbar.html %} {% include socialMedia.html %}
</body>
</html>

View File

@@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="/website/assets/css/blog.css">
</head>
<body>
@@ -10,6 +11,6 @@
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}
{% include footerNavbar.html %}
{% include footerNavbar.html %} {% include socialMedia.html %}
</body>
</html>