0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/docs/_layouts/default.html

30 lines
635 B
HTML
Raw Normal View History

<!doctype html>
2014-03-16 14:56:29 +01:00
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/dist/css/ghost-ui.min.css">
2014-03-16 14:56:29 +01:00
<!-- Fonts -->
<!-- <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,700" /> -->
2014-03-16 14:56:29 +01:00
</head>
<body>
2014-03-16 14:56:29 +01:00
<nav>
<ul>
<li><a href="/">Home</a></li>
<li>
<a href="/css/">CSS</a>
<ul>
<li><a href="/css/buttons/">Buttons</a></li>
2014-03-16 14:56:29 +01:00
</ul>
</li>
</ul>
</nav>
2014-03-16 14:56:29 +01:00
{{content}}
</body>
2014-03-16 14:56:29 +01:00
</html>