You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
774 B
39 lines
774 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>{% block title %}Newsroom{% endblock %}</title> |
|
|
|
<link rel="stylesheet" href="{{ asset('build/styles.css') }}"> |
|
|
|
{% block stylesheets %} |
|
{% endblock %} |
|
</head> |
|
<body> |
|
<header> |
|
{# header component #} |
|
</header> |
|
|
|
<div class="layout"> |
|
<nav> |
|
{% block nav %}{% endblock %} |
|
</nav> |
|
<main> |
|
{% block body %}{% endblock %} |
|
</main> |
|
<aside> |
|
{% block aside %}{% endblock %} |
|
</aside> |
|
</div> |
|
|
|
<footer> |
|
<p>© {{ "now"|date("Y") }} Newsroom</p> |
|
</footer> |
|
|
|
<script src="{{ asset('build/scripts.js') }}"></script> |
|
|
|
{% block javascripts %} |
|
{% endblock %} |
|
</body> |
|
</html>
|
|
|