big import, copied over most of the old site content

This commit is contained in:
2021-04-22 20:47:25 +02:00
parent 8d1158837d
commit a60e295cea
56 changed files with 7688 additions and 0 deletions

22
_layouts/default.html Normal file
View File

@@ -0,0 +1,22 @@
{% include header.html %}
</div>
<!-- Main -->
<div class="wrapper">
<div class="container" id="main">
<!-- Content -->
<article id="content">
<header>
<h2>{{ page.title }}</h2>
{% if page.subtitle %}<p>{{ page.subtitle }}</p>{% endif %}
</header>
{{ content }}
</article>
</div>
</div>
{% include footer.html %}

6
_layouts/frontpage.html Normal file
View File

@@ -0,0 +1,6 @@
{% include header.html %}
{{ content }}
{% include footer.html %}

59
_layouts/post-list.html Normal file
View File

@@ -0,0 +1,59 @@
{% include follow-header.html %}
<!-- Main -->
<div id="main" class="wrapper style3">
<div class="title">{{ page.title }}</div>
<div class="container">
<!-- Content -->
<div id="content">
<article class="box post">
{{ content }}
</article>
</div>
</div>
</div>
<!-- Highlights --//>
<section id="highlights" class="wrapper style3">
<div class="title">The Endorsements</div>
<div class="container">
<div class="row aln-center">
<div class="col-4 col-12-medium">
<section class="highlight">
<a href="#" class="image featured"><img src="images/pic02.jpg" alt="" /></a>
<h3><a href="#">Aliquam diam consequat</a></h3>
<p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p>
<ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul>
</section>
</div>
<div class="col-4 col-12-medium">
<section class="highlight">
<a href="#" class="image featured"><img src="images/pic03.jpg" alt="" /></a>
<h3><a href="#">Nisl adipiscing sed lorem</a></h3>
<p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p>
<ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul>
</section>
</div>
<div class="col-4 col-12-medium">
<section class="highlight">
<a href="#" class="image featured"><img src="images/pic04.jpg" alt="" /></a>
<h3><a href="#">Mattis tempus lorem</a></h3>
<p>Eget mattis at, laoreet vel amet sed velit aliquam diam ante, dolor aliquet sit amet vulputate mattis amet laoreet lorem.</p>
<ul class="actions">
<li><a href="#" class="button style1">Learn More</a></li>
</ul>
</section>
</div>
</div>
</div>
</section-->
{% include footer.html %}