Page Update
This commit is contained in:
parent
c8da4b3c34
commit
ee9709e29d
18 changed files with 1027 additions and 1 deletions
85
build/testpage.html
Normal file
85
build/testpage.html
Normal file
|
@ -0,0 +1,85 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="color-scheme" content="light dark">
|
||||
<meta name="author" content="Liliesh">
|
||||
<meta name="description" content="">
|
||||
<link rel="alternate" href="/atom.xml" type="application/atom+xml">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
<title> | </title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<h1><a href="/">Liliesh's Blog</a></h1>
|
||||
<nav>
|
||||
<h2></h2>
|
||||
<ul>
|
||||
<li><h2><a href="/">Blog</a></h2></li>
|
||||
<li><h2><a href="/archive.html">Archive</a></h2></li>
|
||||
<li><h2><a href="/tags/">Tags</a></h2></li>
|
||||
<li><h2><a href="/about.html">About Me</a></h2></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
|
||||
<h1>This Is A Headline</h1>
|
||||
<p>This is some <strong>bold text</strong> with some <code>code</code> inside. This is <em>some_underlined</em>
|
||||
text with some <code>code</code> inside. This is some text with some <code>code</code> inside. This
|
||||
is some text with some <code>code</code> inside. This is some text with some <code>code</code>
|
||||
inside. This is some text with some <code>code</code> inside. This is some text with some
|
||||
<code>code</code> inside. This is some text with some <code>code</code> inside.</p>
|
||||
<p>This is some <a href="https://example.com">link</a> inside the text – it does not really
|
||||
lead anywhere! This is some <a href="https://example.com">link</a> inside the text – it
|
||||
does not really lead anywhere! This is some <a href="https://example.com">link</a> inside
|
||||
the text – it does not really lead anywhere!</p>
|
||||
<ul>
|
||||
<li>some bullets</li>
|
||||
<li>some other</li>
|
||||
<li>bullets</li>
|
||||
<li>foo</li>
|
||||
</ul>
|
||||
<div class="codehilite"><pre><span></span><code><span class="c1"># this is some python code</span>
|
||||
|
||||
<span class="k">class</span><span class="w"> </span><span class="nc">Foo</span><span class="p">:</span>
|
||||
|
||||
<span class="k">def</span><span class="w"> </span><span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">foo</span><span class="p">,</span> <span class="n">bar</span><span class="p">):</span>
|
||||
<span class="bp">self</span><span class="o">.</span><span class="n">foo</span> <span class="o">=</span> <span class="n">foo</span>
|
||||
<span class="bp">self</span><span class="o">.</span><span class="n">bar</span> <span class="o">=</span> <span class="n">bar</span>
|
||||
|
||||
<span class="k">def</span><span class="w"> </span><span class="nf">do_something</span><span class="p">():</span>
|
||||
<span class="w"> </span><span class="sd">"""This is the docstring of this method.</span>
|
||||
|
||||
<span class="sd"> """</span>
|
||||
<span class="k">return</span> <span class="n">foo</span>
|
||||
</code></pre></div>
|
||||
|
||||
<h2>Some other headline</h2>
|
||||
<p>This is some other text</p>
|
||||
<div class="codehilite"><pre><span></span><code><span class="c"># some comment</span>
|
||||
<span class="nf">foo</span><span class="o">:</span>
|
||||
<span class="w"> </span>ls<span class="w"> </span>-lh
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>This website was built with <a href="https://github.com/venthur/blag">blag</a>.
|
||||
<br>
|
||||
Subscribe to the <a href="/atom.xml">atom feed</a>.
|
||||
<br>
|
||||
Contact me via
|
||||
<a rel="me" href="https://wetdry.world/@techfoxxo">Fediverse</a>,
|
||||
<a href="https://matrix.to/#/@liliesh:catgirl.cloud">Matrix</a>
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue