mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
30 lines
635 B
HTML
30 lines
635 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ page.title }}</title>
|
|
|
|
<link rel="stylesheet" href="/dist/css/ghost-ui.min.css">
|
|
|
|
<!-- Fonts -->
|
|
<!-- <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,700" /> -->
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li>
|
|
<a href="/css/">CSS</a>
|
|
<ul>
|
|
<li><a href="/css/buttons/">Buttons</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
{{content}}
|
|
|
|
</body>
|
|
</html> |