init
This commit is contained in:
parent
0538f61b5a
commit
ac45ac1b6c
193 changed files with 12172 additions and 128 deletions
42
layout/page.html
Normal file
42
layout/page.html
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ title }} - {{ subtitle }}</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="stylesheet" type="text/css" href="{{ base_path }}/css/style.css">
|
||||
</head>
|
||||
|
||||
<body id="{{ slug }}">
|
||||
|
||||
<nav>
|
||||
<section>
|
||||
<span class="home">
|
||||
<a href="{{ base_path }}/">Home</a>
|
||||
</span>
|
||||
<span class="links">
|
||||
<a href="{{ base_path }}/blog/">Blog</a>
|
||||
<a href="{{ base_path }}/news/">News</a>
|
||||
<a href="{{ base_path }}/contact/">Contact</a>
|
||||
<a href="{{ base_path }}/about/">About</a>
|
||||
</span>
|
||||
</section>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<section>
|
||||
<p>© {{ current_year }} Lorem Ipsum</p>
|
||||
<p>
|
||||
<a href="https://twitter.com/sunainapai">Twitter</a>
|
||||
<a href="https://github.com/sunainapai">GitHub</a>
|
||||
<a href="https://www.example.com/">Example</a>
|
||||
</p>
|
||||
</section>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue