25 lines
322 B
HTML
25 lines
322 B
HTML
|
---
|
||
|
layout: none
|
||
|
---
|
||
|
<!DOCTYPE html>
|
||
|
{% if page.lang == 'it' %}
|
||
|
<html lang="it">
|
||
|
{% else %}
|
||
|
<html lang="en">
|
||
|
{% endif %}
|
||
|
|
||
|
{% include head.html %}
|
||
|
|
||
|
<body>
|
||
|
<div class="row">
|
||
|
<div class="one column">
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
<p>{{ page.description }}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{{ content }}
|
||
|
|
||
|
</body>
|
||
|
</html>
|