clone of github.com/decent-newsroom/newsroom
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.
 
 
 
 
 
 

36 lines
856 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 to CSS using the asset manager #}
<link rel="stylesheet" href="{{ asset('build/styles.css') }}">
{% block stylesheets %}
{# Additional styles can be added by child templates here #}
{% endblock %}
</head>
<body>
<header>
</header>
<main>
{% block body %}
{# Main content goes here #}
{% endblock %}
</main>
<footer>
<p>&copy; {{ "now"|date("Y") }} Newsroom</p>
</footer>
{# Link to JavaScript using the asset manager #}
<script src="{{ asset('build/scripts.js') }}"></script>
{% block javascripts %}
{# Additional scripts can be added by child templates here #}
{% endblock %}
</body>
</html>