chore(fmt): add html formatting
This commit is contained in:
@@ -1,28 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>{{ title }} | {{ config.title }}</title>
|
||||
<link rel="canonical" href="{{ base_url }}{{ page_path }}">
|
||||
<link rel="alternate" type="application/atom+xml" title="Atom Feed" href="{{ base_url }}/feed.xml">
|
||||
<link rel="stylesheet" href="{{ prefix }}/style.css">
|
||||
</head>
|
||||
<link rel="canonical" href="{{ base_url }}{{ page_path }}" />
|
||||
<link
|
||||
rel="alternate"
|
||||
type="application/atom+xml"
|
||||
title="Atom Feed"
|
||||
href="{{ base_url }}/feed.xml"
|
||||
/>
|
||||
<link rel="stylesheet" href="{{ prefix }}/style.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<body>
|
||||
<nav>
|
||||
<a href="{{ prefix }}/index.html">{{ config.title }}</a>
|
||||
{% for item in nav %}
|
||||
<a href="{{ prefix }}{{ item.path }}">{{ item.label }}</a>
|
||||
{% endfor %}
|
||||
<a href="{{ prefix }}/index.html">{{ config.title }}</a>
|
||||
{% for item in nav %}
|
||||
<a href="{{ prefix }}{{ item.path }}">{{ item.label }}</a>
|
||||
{% endfor %}
|
||||
</nav>
|
||||
<main>
|
||||
{% block content %}{% endblock content %}
|
||||
</main>
|
||||
<main>{% block content %}{% endblock content %}</main>
|
||||
<footer>
|
||||
<p>© {{ config.author }}</p>
|
||||
<p>© {{ config.author }}</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user