Skip to content

Commit

Permalink
Create doc.html
Browse files Browse the repository at this point in the history
  • Loading branch information
m-casanova authored Sep 5, 2024
1 parent 1c76e45 commit 4da545e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions _layouts/doc.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="it">
<head>
{% include head.html %}
</head>
<body>
<div class="wrapper">
{% if page.use_js %}<div class="spinner-container" id="spinner"><div class="spinner"></div></div>{% endif %}
<div id="pagina">

{% include header.html %}

<main>
<div class="side">
<h4><a href="{{site.baseurl}}" target="_self">{{site.title}}</a></h4>
<p>Una raccolta di informazioni sulla storia del territorio italiano dal 1861.</p>
</div>
<article>
<h1>{{page.title}}</h1>
{{ content }}
{% if page.fonte %}<p>Fonte: {% if page.fonte_url %}<a href="fonte_url">{{page.fonte}}</a>{% else %}{{page.fonte}}{% endif %}</p>{% endif %}
</article>
</main>

{% include footer.html %}

</div>
</div>
{% if page.use_js %}<script>
let baseUrl = '{{site.baseurl}}';
</script>{% include scripts.html %}{% endif %}
</body>
</html>

0 comments on commit 4da545e

Please sign in to comment.