Add wishlist page
This commit is contained in:
@ -1,16 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="https://fonts.googleapis.com/css?family=PT+Serif:400,700&subset=cyrillic" rel="stylesheet">
|
||||
<title>
|
||||
{% if page.title is defined %}
|
||||
{{ page.title }} - {{ site.title }}
|
||||
{% else %}
|
||||
{{ site.title }}
|
||||
{% endif %}
|
||||
</title>
|
||||
{% include 'head.twig' %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
35
source/_layouts/internal.html.twig
Normal file
35
source/_layouts/internal.html.twig
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{% include 'head.twig' %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="page">
|
||||
|
||||
<nav class="navigation">
|
||||
<ul class="navigation__actions">
|
||||
<li class="navigation__action">
|
||||
<a class="navigation__link" href="/">
|
||||
Главная
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<main class="content">
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
</div>
|
||||
|
||||
{% include 'counters.twig' %}
|
||||
|
||||
<script src="/static/layout_internal.js?v={{ date().timestamp }}"></script>
|
||||
|
||||
{% block js %}
|
||||
{# extra js scripts here #}
|
||||
{% endblock %}
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user