zola-theme-terminimal/index.html

229 lines
9.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Zola Terminimal theme</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="robots" content="noodp"/>
<link rel="stylesheet" href="https://pawroman.github.io/zola-theme-terminimal/style.css">
<link rel="stylesheet" href="https://pawroman.github.io/zola-theme-terminimal/color/blue.css">
<link rel="stylesheet" href="https://pawroman.github.io/zola-theme-terminimal/font-hack-subset.css">
<meta name="description" content="">
<meta property="og:description" content="">
<meta property="og:title" content="Zola Terminimal theme">
<meta property="og:type" content="website">
<meta property="og:url" content="https://pawroman.github.io/zola-theme-terminimal/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="">
<meta name="twitter:title" content="Zola Terminimal theme">
<meta property="twitter:domain" content="pawroman.github.io&#x2F;zola-theme-terminimal">
<meta property="twitter:url" content="https://pawroman.github.io/zola-theme-terminimal/">
<link rel="alternate" type="application/rss+xml" title="Zola Terminimal theme RSS Feed" href="https://pawroman.github.io/zola-theme-terminimal/rss.xml" />
<link rel="alternate" type="application/atom+xml" title="Zola Terminimal theme Atom Feed" href="https://pawroman.github.io/zola-theme-terminimal/atom.xml" />
</head>
<body class="">
<div class="container">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="https://pawroman.github.io/zola-theme-terminimal" style="text-decoration: none;">
<div class="logo">
Terminimal theme
</div>
</a>
</div>
</div>
<nav class="menu">
<ul class="menu__inner">
<li class="active"><a href="https://pawroman.github.io/zola-theme-terminimal">blog</a></li>
<li><a href="https://pawroman.github.io/zola-theme-terminimal/tags">tags</a></li>
<li><a href="https://pawroman.github.io/zola-theme-terminimal/archive">archive</a></li>
<li><a href="https://pawroman.github.io/zola-theme-terminimal/about">about me</a></li>
<li><a href="https://github.com/pawroman/zola-theme-terminimal" target="_blank" rel="noopener noreferrer">github</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="posts">
<div class="post on-list">
<h1 class="post-title"><a href="https://pawroman.github.io/zola-theme-terminimal/welcome-terminimal-theme/">Welcome to Terminimal Theme for Zola</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2019-02-04
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://pawroman.github.io/zola-theme-terminimal/tags/showcase/">#showcase</a>&nbsp;
<a class="post-tag" href="https://pawroman.github.io/zola-theme-terminimal/tags/theme/">#theme</a>&nbsp;
<a class="post-tag" href="https://pawroman.github.io/zola-theme-terminimal/tags/zola/">#zola</a></span>
<div class="post-content">
<p>Welcome to Terminimal! This is a theme showcase post.</p>
<p>Code block (using "boron" theme):</p>
<pre data-lang="python" style="background-color:#151515;color:#e8e8d3;" class="language-python "><code class="language-python" data-lang="python"><span style="color:#888888;">#!/usr/bin/python3
</span><span>
</span><span style="color:#8fbfdc;">class </span><span style="color:#ffb964;">HelloPrinter</span><span>:
</span><span> </span><span style="color:#8fbfdc;">def </span><span style="color:#fad07a;">__init__</span><span>(</span><span style="color:#ffb964;">self</span><span>, </span><span style="color:#ffb964;">thing</span><span>):
</span><span> </span><span style="color:#ffb964;">self</span><span>.thing = thing
</span><span>
</span><span> </span><span style="color:#8fbfdc;">def </span><span style="color:#fad07a;">__call__</span><span>(</span><span style="color:#ffb964;">self</span><span>):
</span><span> </span><span style="color:#ffb964;">print</span><span>(</span><span style="color:#8fbfdc;">f</span><span style="color:#556633;">&quot;</span><span style="color:#99ad6a;">Hello, </span><span>{</span><span style="color:#ffb964;">self</span><span>.thing}</span><span style="color:#99ad6a;">!</span><span style="color:#556633;">&quot;</span><span>)
</span><span>
</span><span>
</span><span>printer = </span><span style="color:#ffb964;">HelloPrinter</span><span>(</span><span style="color:#556633;">&quot;</span><span style="color:#99ad6a;">World</span><span style="color:#556633;">&quot;</span><span>)
</span><span style="color:#ffb964;">printer</span><span>()
</span><span>
</span><span style="color:#888888;"># prints: Hello, World!
</span></code></pre>
<p>Inline code: <code>print("Hello world!")</code>.</p>
<p>Basic typography:</p>
<p><em>Italic text</em>. <strong>Bold text</strong>. <em><strong>Italic bold</strong></em>. Link: <a href="#">click me</a></p>
<h1 id="header-1">Header 1</h1>
<h2 id="header-2">Header 2</h2>
<h3 id="header-3">Header 3</h3>
<h4 id="header-4">Header 4</h4>
<p>Quote:</p>
<blockquote>
<p>"Theory is when you know everything but nothing works.
Practice is when everything works but no one knows why.
In our lab, theory and practice are combined: nothing works and no one knows why."</p>
</blockquote>
<p>Lists:</p>
<ul>
<li>A</li>
<li>B</li>
<li>CDEF
<ul>
<li>Nested Item
<ul>
<li>And more nesting</li>
</ul>
</li>
<li>GHIJ</li>
</ul>
</li>
</ul>
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
<p>Horizontal line:</p>
<hr />
<p>This is where the post summary ends.</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://pawroman.github.io/zola-theme-terminimal/welcome-terminimal-theme/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://pawroman.github.io/zola-theme-terminimal/more-ranting/">More ranting</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2019-02-03
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://pawroman.github.io/zola-theme-terminimal/tags/rant/">#rant</a></span>
<div class="post-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu feugiat sapien. Aenean ligula nunc, laoreet id sem in, interdum bibendum felis. Donec vel dui neque. Praesent ac sem ut justo volutpat rutrum a imperdiet tellus. Nam lobortis massa non hendrerit hendrerit. Vivamus porttitor dignissim turpis, eget aliquam urna tincidunt non. Aliquam et fringilla turpis. Nullam eros est, eleifend in ornare sed, hendrerit eget est. Aliquam tellus felis, suscipit vitae ex vel, fringilla tempus massa. Nulla facilisi. Pellentesque lobortis consequat lectus. Maecenas ac libero elit.</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://pawroman.github.io/zola-theme-terminimal/more-ranting/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">
<span class="button next">
<a href="https://pawroman.github.io/zola-theme-terminimal/page/2/">
<span class="button__text">Older posts</span>&nbsp;
<span class="button__icon"></span>
</a>
</span>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>©
2024
Powered by <a href="https://www.getzola.org/">Zola</a></span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
</div>
</footer>
</div>
</body>
</html>