Compare commits
No commits in common. "0e1ed09bee0d4b0b55708aa3f441ba854dc645ed" and "2a06d6666e2deddaabb2f2ba18df7cb2818eeb4a" have entirely different histories.
0e1ed09bee
...
2a06d6666e
@ -2,7 +2,7 @@
|
|||||||
<!-- description: Alexander 'PapaTutuWawa' 's code repositories. -->
|
<!-- description: Alexander 'PapaTutuWawa' 's code repositories. -->
|
||||||
<!-- render: yes -->
|
<!-- render: yes -->
|
||||||
|
|
||||||
<div class="flex flex-col pt-8 mx-auto">
|
<div class="flex flex-col pt-8">
|
||||||
<p class="prose text-white">
|
<p class="prose text-white">
|
||||||
I keep my code mostly on my private Gitea instance <a class="text-indigo-400"
|
I keep my code mostly on my private Gitea instance <a class="text-indigo-400"
|
||||||
href="https://{{ gitea_url }}/{{ gitea_username }}">here</a>.
|
href="https://{{ gitea_url }}/{{ gitea_username }}">here</a>.
|
||||||
@ -27,4 +27,4 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,7 +1,7 @@
|
|||||||
<!-- title: Contact | polynom.me -->
|
<!-- title: Contact | polynom.me -->
|
||||||
<!-- description: Contact details for getting in touch with Alexander 'PapaTutuWawa'. -->
|
<!-- description: Contact details for getting in touch with Alexander 'PapaTutuWawa'. -->
|
||||||
<!-- render: yes -->
|
<!-- render: yes -->
|
||||||
<div class="flex flex-col pt-8 mx-auto">
|
<div class="flex flex-col pt-8">
|
||||||
<p class="prose text-white">
|
<p class="prose text-white">
|
||||||
If you have any questions about my projects or just want to talk, feel
|
If you have any questions about my projects or just want to talk, feel
|
||||||
free to reach out to me.
|
free to reach out to me.
|
||||||
@ -40,4 +40,4 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,8 +1,7 @@
|
|||||||
<!-- title: Home | polynom.me -->
|
<!-- title: Home | polynom.me -->
|
||||||
<!-- description: The personal website of Alexander 'PapaTutuWawa'. -->
|
<!-- description: The personal website of Alexander 'PapaTutuWawa'. -->
|
||||||
<!-- render: yes -->
|
<!-- render: yes -->
|
||||||
|
<div class="flex flex-col w-full sm:w-4/5">
|
||||||
<div class="flex flex-col mx-auto">
|
|
||||||
<p class="text-white prose py-8 self-center">
|
<p class="text-white prose py-8 self-center">
|
||||||
Hello! My online pseudonym is <i>PapaTutuWawa</i> and I am
|
Hello! My online pseudonym is <i>PapaTutuWawa</i> and I am
|
||||||
just some random person on the Internet who is passionate about
|
just some random person on the Internet who is passionate about
|
||||||
@ -16,4 +15,4 @@
|
|||||||
|
|
||||||
{{ for_each projects layout/templates/project.html }}
|
{{ for_each projects layout/templates/project.html }}
|
||||||
|
|
||||||
</div>
|
</div>
|
14
input.css
14
input.css
@ -2,16 +2,6 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
@layer base {
|
html {
|
||||||
body {
|
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
|
||||||
@apply text-white;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
@apply text-indigo-400 !important;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +1,38 @@
|
|||||||
<!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 rel="shortcut icon" href="/assets/img/favicon.ico" sizes="32x32" />
|
</head>
|
||||||
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="Moxxy Blog" />
|
|
||||||
|
|
||||||
<meta property="og:title" content="{{ title }}" />
|
<body class="min-h-screen h-full flex flex-col p-8 h-full">
|
||||||
<meta property="og:description" content="{{ description }}" />
|
<div class="flex flex-col items-center">
|
||||||
|
<!-- Allow the header to be independently sized from the content -->
|
||||||
|
<div>
|
||||||
|
<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" />
|
||||||
|
|
||||||
<title>{{ title }}</title>
|
<div class="flex flex-col justify-center px-8">
|
||||||
</head>
|
<a href="/"><h1 class="text-xl lg:text-4xl text-indigo-400">PapaTutuWawa</h1></a>
|
||||||
<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="{{ page_assets }}/img/avatar.jpg" alt="Profile picture"/>
|
|
||||||
<div class="ml-4 self-center">
|
|
||||||
<a class="self-center text-2xl font-bold" href="/">PapaTutuWawa's Website</a>
|
|
||||||
|
|
||||||
<ul class="list-none">
|
<div class="flex flex-row justify-between">
|
||||||
<li class="inline mr-8"><a href="https://blog.polynom.me">Blog</a></li>
|
<a class="text-indigo-400" href="https://blog.polynom.me">Blog</a>
|
||||||
<li class="inline mr-8"><a href="/code.html">Code</a></li>
|
<a class="text-indigo-400" href="/code.html">Code</a>
|
||||||
<li class="inline mr-8"><a href="/contact.html">Contact</a></li>
|
<a class="text-indigo-400" href="/contact.html">Contact</a>
|
||||||
</ul>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
@ -9,7 +9,7 @@
|
|||||||
]);
|
]);
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
pname = "website";
|
pname = "website";
|
||||||
version = "20230722";
|
version = "20230716";
|
||||||
|
|
||||||
src = ../.;
|
src = ../.;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user