Compare commits
No commits in common. "decfba6bd8af924e75822178befb1c97c64b4dea" and "ba567e0d65defba9dd0e20e4814b970117db9feb" have entirely different histories.
decfba6bd8
...
ba567e0d65
36
input.css
36
input.css
@ -2,27 +2,19 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
@layer base {
|
html {
|
||||||
article > p > a, h1, h2, h3, h4, h5, h6 {
|
|
||||||
@apply text-indigo-400 !important;
|
|
||||||
}
|
|
||||||
article > p > strong, code {
|
|
||||||
@apply text-white !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
article > h1, h2, h3, h4, h5, h6 {
|
|
||||||
@apply text-indigo-400 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
@layer base {
|
||||||
@apply text-white;
|
article > p > a, h1, h2, h3, h4, h5, h6 {
|
||||||
}
|
@apply text-indigo-400 !important;
|
||||||
|
}
|
||||||
a {
|
article > p > strong, code {
|
||||||
@apply text-indigo-400 !important;
|
@apply text-white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
article > h1, h2, h3, h4, h5, h6 {
|
||||||
|
@apply text-indigo-400 !important;
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,10 +1,14 @@
|
|||||||
<!-- Post item -->
|
<!-- Post item -->
|
||||||
<div class="flex flex-col pt-4">
|
<div class="w-4/5 py-4">
|
||||||
<a href="/{{ slug }}.html"><h1 class="text-indigo-400 prose prose-lg text-xl">{{ title }}</h1></a>
|
<a href="/{{ slug }}.html">
|
||||||
<span class="text-md mt-2">Posted on {{ date }}</span>
|
<h1 class="prose prose-h1 text-2xl text-indigo-400">{{ title }}</h1>
|
||||||
|
</a>
|
||||||
|
|
||||||
<!-- Blurp -->
|
<p class="prose prose-xs text-white">
|
||||||
<span class="prose text-white mt-4">
|
Posted on {{ date }}
|
||||||
{{ summary }}
|
</p>
|
||||||
</span>
|
|
||||||
|
<p class="prose text-white py-2">
|
||||||
|
{{ summary }}...
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
@ -1,4 +1,4 @@
|
|||||||
<!-- Container for posts -->
|
<!-- Posts wrapper -->
|
||||||
<div class="mx-auto">
|
<div class="flex flex-col items-center">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</div>
|
</div>
|
@ -1,38 +1,49 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
|
<title>{{ title }}</title>
|
||||||
|
|
||||||
|
<meta property="og:title" content="{{ title }}" />
|
||||||
|
<meta property="og:description" content="{{ description }}" />
|
||||||
|
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<link href="/assets/css/index.css" rel="stylesheet" />
|
<link href="/assets/css/index.css" rel="stylesheet" />
|
||||||
<link href="/assets/css/code.css" rel="stylesheet" />
|
<link href="/assets/css/code.css" rel="stylesheet" />
|
||||||
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="Moxxy Blog" />
|
|
||||||
|
|
||||||
<!-- Blog -->
|
<!-- Optional MathJax -->
|
||||||
<link rel="alternative"
|
{{ mathjax_include }}
|
||||||
type="application/rss+xml"
|
|
||||||
|
<!-- Blog -->
|
||||||
|
<link rel="alternative"
|
||||||
|
type="application/rss+xml"
|
||||||
title="PapaTutuWawa's Blog"
|
title="PapaTutuWawa's Blog"
|
||||||
href="https://{{ blog_url }}/atom.xml" />
|
href="https://{{ blog_url }}/atom.xml" />
|
||||||
|
|
||||||
<!-- Optional MathJax -->
|
</head>
|
||||||
{{ mathjax_include }}
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="flex flex-col p-2 md:p-8 items-start md:w-4/5 mx-auto">
|
|
||||||
<!-- Header -->
|
|
||||||
<div class="flex flex-row self-center">
|
|
||||||
<img class="w-12 h-12 md:w-24 md:h-24 rounded-lg" src="https://git.polynom.me/avatars/5b7b58054c0a93e5f66191f097d15215?size=870" alt="Profile picture"/>
|
|
||||||
<div class="ml-4 self-center">
|
|
||||||
<a class="self-center text-2xl font-bold" href="/">PapaTutuWawa's Blog</a>
|
|
||||||
|
|
||||||
<ul class="list-none">
|
<body class="min-h-screen h-full flex flex-col p-8 h-full">
|
||||||
<li class="inline mr-8"><a href="/index.html">Posts</a></li>
|
<div class="flex flex-col items-center">
|
||||||
<li class="inline mr-8"><a href="/atom.xml">RSS</a></li>
|
<!-- Allow the header to be independently sized from the content -->
|
||||||
<li class="inline mr-8"><a href="https://polynom.me">About</a></li>
|
<div>
|
||||||
</ul>
|
<div class="flex flex-row">
|
||||||
|
<img class="w-32 md:w-36 lg:w-48 h-32 md:h-36 lg:h-48 rounded-lg" src="https://cdn.polynom.me/img/avatar.jpg" />
|
||||||
|
|
||||||
|
<div class="flex flex-col justify-center px-8">
|
||||||
|
<h1 class="text-xl lg:text-4xl text-white">PapaTutuWawa's blog</h1>
|
||||||
|
|
||||||
|
<div class="flex flex-row justify-between">
|
||||||
|
<a class="text-indigo-400" href="/index.html">Posts</a>
|
||||||
|
<a class="text-indigo-400" href="/atom.xml">RSS</a>
|
||||||
|
<a class="text-indigo-400" href="https://polynom.me">About</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -1,19 +1,18 @@
|
|||||||
<!-- Container for posts -->
|
<!-- Post wrapper -->
|
||||||
<div class="mx-auto mt-4 w-full md:max-w-prose">
|
<div class="flex flex-col items-center pt-8">
|
||||||
<h1 class="text-indigo-400 text-3xl">{{ title }}</h1>
|
<h1 class="prose prose-h1 text-2xl text-indigo-400 self-start">{{ title }}</h1>
|
||||||
|
|
||||||
<span class="text-md mt-2">Posted on {{ date }}</span>
|
<p class="prose prose-xs text-white self-start">Posted on {{ date }}</p>
|
||||||
|
|
||||||
<!-- Actual article -->
|
<article class="text-white prose prose-lg pt-8">
|
||||||
<article class="prose lg:prose-lg text-white mt-4">
|
{{ content }}
|
||||||
{{ content }}
|
</article>
|
||||||
</article>
|
|
||||||
|
|
||||||
<!-- Common post footer -->
|
<!-- Post ending -->
|
||||||
<div class="mt-6">
|
<span class="text-white prose prose-lg self-start pt-8">
|
||||||
<span class="prose lg:prose-lg text-md text-white">
|
If you have any questions or comments, then feel free to send me an email (Preferably with GPG encryption) to
|
||||||
If you have any questions or comments, then feel free to send me an email (Preferably with GPG encryption)
|
{{ email_user }} [at] {{ email_domain }} or
|
||||||
to {{ email_user }} [at] {{ email_domain }} or reach out to me on the Fediverse at <a href="https://{{ fediverse_url }}">{{ fediverse_handle }}</a>.
|
reach out to me on the Fediverse at <a class="text-indigo-400"
|
||||||
|
href="https://{{ fediverse_url }}">{{ fediverse_handle }}</a>.
|
||||||
</span>
|
</span>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
@ -8,7 +8,7 @@
|
|||||||
pythonEnv = python3.withPackages (ps: with ps; [markdown pygments]);
|
pythonEnv = python3.withPackages (ps: with ps; [markdown pygments]);
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
pname = "blog";
|
pname = "blog";
|
||||||
version = "20230722";
|
version = "20231507";
|
||||||
|
|
||||||
src = ../.;
|
src = ../.;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user