mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
22 lines
399 B
HTML
22 lines
399 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Meta, title, CSS, favicons, etc. -->
|
|
{% include head.html %}
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<a class="sr-only sr-only-focusable" href="#gh-main">Skip to main content</a>
|
|
|
|
<!-- Main nav -->
|
|
{% include nav/global.html %}
|
|
|
|
<main id="gh-main" class="viewport" role="main">
|
|
{{content}}
|
|
</main>
|
|
|
|
{% include foot.html %}
|
|
|
|
</div>
|
|
</body>
|
|
</html> |