Open the blog
This commit is contained in:
15
themes/_includes/components/pagination.html
Normal file
15
themes/_includes/components/pagination.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="pagination">
|
||||
$if(previousPageNum)$
|
||||
<a href="$previousPageUrl$" class="previous">← Vorherige</a>
|
||||
$else$
|
||||
<span> </span>
|
||||
$endif$
|
||||
|
||||
<span class="page_number">Seite $currentPageNum$ von $numPages$</span>
|
||||
|
||||
$if(nextPageNum)$
|
||||
<a href="$nextPageUrl$" class="next">Nächste →</a>
|
||||
$else$
|
||||
<span> </span>
|
||||
$endif$
|
||||
</div>
|
28
themes/_includes/components/post.html
Normal file
28
themes/_includes/components/post.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<article class="post" role="article">
|
||||
<h2 class="post-title">
|
||||
<a href="$url$">$title$</a>
|
||||
</h2>
|
||||
|
||||
<div class="post-author">
|
||||
<div class="post-meta">
|
||||
<time datetime="$date$" class="post-date">$published$</time>
|
||||
<div class="post-categories"><a href="/$tags$">$tags$</a></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="post-content">
|
||||
$if(teaser)$
|
||||
$teaser$
|
||||
$else$
|
||||
$description$
|
||||
$endif$
|
||||
<p>
|
||||
<a href="$url$" class="read-more-button" role="button">
|
||||
Weiterlesen...
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="post-footer">
|
||||
</div>
|
||||
</article>
|
8
themes/_includes/layout/footer.html
Normal file
8
themes/_includes/layout/footer.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<footer class="site-footer">
|
||||
<nav>
|
||||
<a href="/impressum.html">Impressum</a>
|
||||
<a href="/datenschutz.html">Datenschutz</a>
|
||||
</nav>
|
||||
|
||||
<p>E-Mail: <a href="mailto:belka@caraus.de">belka@caraus.de</a></p>
|
||||
</footer>
|
6
themes/_includes/layout/header.html
Normal file
6
themes/_includes/layout/header.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<header class="site-header">
|
||||
<a class="site-header-wrapper" href="/">
|
||||
<span class="site-subtitle">Über Technik und Philosophie</span>
|
||||
<span class="site-title">Mein Tagebuch</span>
|
||||
</a>
|
||||
</header>
|
6
themes/_includes/layout/navigation.html
Normal file
6
themes/_includes/layout/navigation.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<nav class="site-navigation" role="navigation">
|
||||
<a href="/"$if(active-blog)$ class="active"$endif$>Home</a>
|
||||
$for(categories)$
|
||||
<a class="$body$" href="$url$">$title$</a>
|
||||
$endfor$
|
||||
</nav>
|
19
themes/_includes/meta.html
Normal file
19
themes/_includes/meta.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<meta property="og:url" content="https://www.flevum.de$url$" />
|
||||
|
||||
$if(published)$
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="article:published_time" content="$date$" />
|
||||
$else$
|
||||
<meta property="og:type" content="website" />
|
||||
$endif$
|
||||
$if(tags)$
|
||||
<meta property="article:section" content="$tags$" />
|
||||
<meta property="article:tag" content="$tags$" />
|
||||
$endif$
|
||||
<meta property="og:title" content="$title$" />
|
||||
<meta property="og:site_name" content="Flevum über Technik und Philosophie" />
|
||||
$if(teaser)$
|
||||
<meta name="description" property="og:description" content="$teaser$" />
|
||||
$else$
|
||||
<meta name="description" property="og:description" content="Über Technik und Philosophie" />
|
||||
$endif$
|
4
themes/_includes/partials/burgerMenu.html
Normal file
4
themes/_includes/partials/burgerMenu.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<input type="checkbox" class="toggleBurger" id="toggleBurger">
|
||||
<label for="toggleBurger" class="toggleBurgerWrapper">
|
||||
<span></span>
|
||||
</label>
|
1
themes/_includes/partials/headerSeparator.html
Normal file
1
themes/_includes/partials/headerSeparator.html
Normal file
@@ -0,0 +1 @@
|
||||
<div class="header-content-separator"></div>
|
Reference in New Issue
Block a user