added error index and newer geminicss
|
@ -95,13 +95,6 @@ draw for fun and I in no way claim to be a good artist in any way.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -153,7 +146,7 @@ draw for fun and I in no way claim to be a good artist in any way.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -4,23 +4,30 @@
|
||||||
* Website: https://geminicss.paulwilde.uk
|
* Website: https://geminicss.paulwilde.uk
|
||||||
* */
|
* */
|
||||||
:root {
|
:root {
|
||||||
--bg: #111122;
|
--bg: #111111;
|
||||||
--text: #eeeedd;
|
--text: #eeeedd;
|
||||||
--text-dark: #ccccbb;
|
--text-dark: #ccccbb;
|
||||||
--accent: #d0c010;
|
--accent: #d0c010;
|
||||||
--accent-2: #228822;
|
--accent-2: #228822;
|
||||||
--accent-2-dark: #006600;
|
--accent-2-dark: #006600;
|
||||||
--accent-3: #ffaa44;
|
--accent-3: #ffaa44;
|
||||||
|
--accent-4: #ddd;
|
||||||
|
--accent-5: #777;
|
||||||
}
|
}
|
||||||
* {
|
* {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
|
font-family: 'DejaVu Mono Sans', monospace;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
|
margin:auto;
|
||||||
background-color: var(--bg);
|
background-color: var(--bg);
|
||||||
max-width: 80%;
|
font-size: 1em;
|
||||||
|
max-width: 40vw;
|
||||||
|
display:block;
|
||||||
margin:auto;
|
margin:auto;
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
font-size: 1.1em;
|
}
|
||||||
|
main {
|
||||||
}
|
}
|
||||||
p, a, label, h1, h2, h3, h4, h5, ul, li {
|
p, a, label, h1, h2, h3, h4, h5, ul, li {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
|
@ -30,7 +37,7 @@ h1:before, h2:before, h3:before, a:before {
|
||||||
}
|
}
|
||||||
h1:before, h2:before, h3:before, a:before {
|
h1:before, h2:before, h3:before, a:before {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
left: 100px;
|
left: 25vw;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
transition: color 0.3s, background 0.3s;
|
transition: color 0.3s, background 0.3s;
|
||||||
|
@ -88,6 +95,20 @@ h3 {
|
||||||
h3:before {
|
h3:before {
|
||||||
content: "### ";
|
content: "### ";
|
||||||
}
|
}
|
||||||
|
h4 {
|
||||||
|
font-size: 1.2em;
|
||||||
|
color: var(--accent-3);
|
||||||
|
}
|
||||||
|
h4:before {
|
||||||
|
content: "#### ";
|
||||||
|
}
|
||||||
|
h5 {
|
||||||
|
font-size: 1.0em;
|
||||||
|
color: var(--accent-3);
|
||||||
|
}
|
||||||
|
h5:before {
|
||||||
|
content: "##### ";
|
||||||
|
}
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 3px solid var(--accent-2);
|
border-left: 3px solid var(--accent-2);
|
||||||
padding: 0.4em;
|
padding: 0.4em;
|
||||||
|
@ -98,27 +119,26 @@ blockquote {
|
||||||
blockquote pre {
|
blockquote pre {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
ul li ul {
|
|
||||||
margin:0;
|
|
||||||
padding:0;
|
|
||||||
}
|
|
||||||
ul li ul {
|
|
||||||
list-style-type:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1600px) {
|
@media only screen and (max-width: 1600px) {
|
||||||
h1:before, h2:before, h3:before, a:before {
|
h1:before, h2:before, h3:before, a:before {
|
||||||
left: 60px;
|
left: 220px;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
max-width: 50vw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 1200px) {
|
@media only screen and (max-width: 1200px) {
|
||||||
h1:before, h2:before, h3:before, a:before {
|
h1:before, h2:before, h3:before, a:before {
|
||||||
left: 20px;
|
left: 50px;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
max-width: 70vw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 700px) {
|
@media only screen and (max-width: 700px) {
|
||||||
body {
|
body {
|
||||||
max-width: 70%;
|
max-width: 70vw;
|
||||||
}
|
}
|
||||||
h1:before, h2:before, h3:before, a:before {
|
h1:before, h2:before, h3:before, a:before {
|
||||||
left: 4px;
|
left: 4px;
|
||||||
|
|
|
@ -68,13 +68,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -126,7 +119,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -99,13 +99,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -157,7 +150,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -155,13 +155,6 @@ I’m working on this ultimately for my own use for my own small business. I’m
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -213,7 +206,7 @@ I’m working on this ultimately for my own use for my own small business. I’m
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -96,13 +96,6 @@ You probably need to be familiar with TOML configuration files, but other than t
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -154,7 +147,7 @@ You probably need to be familiar with TOML configuration files, but other than t
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -76,13 +76,6 @@ use eventually.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -134,7 +127,7 @@ use eventually.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -120,13 +120,6 @@ It’s completely up to you how to run them, they’re just simple CLI tools rea
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -178,7 +171,7 @@ It’s completely up to you how to run them, they’re just simple CLI tools rea
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
BIN
images/websites/errorindex.png
Normal file
After Width: | Height: | Size: 48 KiB |
|
@ -64,13 +64,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -122,7 +115,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<link rel="canonical" href="https://codeberg.org/pswilde/obtainium-list/raw/branch/main/obtainium.json">
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://codeberg.org/pswilde/obtainium-list/raw/branch/main/obtainium.json">
|
|
||||||
<title>Redirect</title>
|
|
||||||
<p><a href="https://codeberg.org/pswilde/obtainium-list/raw/branch/main/obtainium.json">Click here</a> to be redirected.</p>
|
|
|
@ -83,13 +83,6 @@ Squeaking the old well known phrase<br />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -141,7 +134,7 @@ Squeaking the old well known phrase<br />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -73,13 +73,6 @@ It might not be fully accurate but I don’t care</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -131,7 +124,7 @@ It might not be fully accurate but I don’t care</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -89,13 +89,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -147,7 +140,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -73,13 +73,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -131,7 +124,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
BIN
processed_images/bedfordandco.7bd6863d15eed8c1.webp
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
processed_images/errorindex.1fc47800e0bc00ca.webp
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
processed_images/faces.4077c373a0c2261f.webp
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
processed_images/geeseWildeCloud.fc44f12ad3608cae.webp
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
processed_images/ltos.23db680caeee0015.webp
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
processed_images/rossrates.02e6f7e2667ff87e.webp
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
processed_images/skeletor.1aa968e13e105de7.webp
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
processed_images/unphonetic.11b6ff1ac08bf65a.webp
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
processed_images/wildeit.ad91f31ead3e5633.webp
Normal file
After Width: | Height: | Size: 29 KiB |
|
@ -144,13 +144,6 @@ things that use this dough here, eventually.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -202,7 +195,7 @@ things that use this dough here, eventually.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -85,13 +85,6 @@ simple and brief, you don’t need introductions, you just need to cook.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -143,7 +136,7 @@ simple and brief, you don’t need introductions, you just need to cook.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -103,13 +103,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -161,7 +154,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
10
sitemap.xml
|
@ -30,9 +30,6 @@
|
||||||
<loc>https://paulwilde.uk/dev/wm-tools/</loc>
|
<loc>https://paulwilde.uk/dev/wm-tools/</loc>
|
||||||
<lastmod>2022-05-08T16:25:13+01:00</lastmod>
|
<lastmod>2022-05-08T16:25:13+01:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
|
||||||
<loc>https://paulwilde.uk/obtainium/</loc>
|
|
||||||
</url>
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://paulwilde.uk/poems/</loc>
|
<loc>https://paulwilde.uk/poems/</loc>
|
||||||
</url>
|
</url>
|
||||||
|
@ -94,6 +91,10 @@
|
||||||
<loc>https://paulwilde.uk/websites/bedfordandco/</loc>
|
<loc>https://paulwilde.uk/websites/bedfordandco/</loc>
|
||||||
<lastmod>2021-04-01T10:54:15+01:00</lastmod>
|
<lastmod>2021-04-01T10:54:15+01:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://paulwilde.uk/websites/errorindex/</loc>
|
||||||
|
<lastmod>2023-11-22T13:53:31+01:00</lastmod>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://paulwilde.uk/websites/faces/</loc>
|
<loc>https://paulwilde.uk/websites/faces/</loc>
|
||||||
<lastmod>2021-03-31T17:22:16+01:00</lastmod>
|
<lastmod>2021-03-31T17:22:16+01:00</lastmod>
|
||||||
|
@ -109,6 +110,9 @@
|
||||||
<url>
|
<url>
|
||||||
<loc>https://paulwilde.uk/websites/page/1/</loc>
|
<loc>https://paulwilde.uk/websites/page/1/</loc>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://paulwilde.uk/websites/page/2/</loc>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://paulwilde.uk/websites/rossrates/</loc>
|
<loc>https://paulwilde.uk/websites/rossrates/</loc>
|
||||||
<lastmod>2021-04-06T21:12:57+01:00</lastmod>
|
<lastmod>2021-04-06T21:12:57+01:00</lastmod>
|
||||||
|
|
|
@ -84,13 +84,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -142,7 +135,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -133,13 +133,6 @@ This list is by no means complete as, if you’re like me you’ll understand, I
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -191,7 +184,7 @@ This list is by no means complete as, if you’re like me you’ll understand, I
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -93,13 +93,6 @@ I will continue to run my <a href="https://birdsites.wilde.cloud">BirdsiteLIVE I
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -151,7 +144,7 @@ I will continue to run my <a href="https://birdsites.wilde.cloud">BirdsiteLIVE I
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -90,13 +90,6 @@ for providing various components for my PC.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -148,7 +141,7 @@ for providing various components for my PC.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -66,13 +66,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -124,7 +117,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -67,13 +67,6 @@ Has additional Vue.js implementation for news and exchange rates updates.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -125,7 +118,7 @@ Has additional Vue.js implementation for news and exchange rates updates.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
123
websites/errorindex/index.html
Normal file
|
@ -0,0 +1,123 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-gb">
|
||||||
|
<head>
|
||||||
|
<link rel="shortcut icon" type="image/jpg" href='/images/favicon.png'/>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="My site of stuff" />
|
||||||
|
<meta property="og:title" content="Paul Wilde :: Paul Wilde" />
|
||||||
|
<meta property="og:image" content='/images/favicon.png' />
|
||||||
|
<meta property="og:description" content="My site of stuff" />
|
||||||
|
<link rel="stylesheet" href="/css/gemini.css"/>
|
||||||
|
<link rel="stylesheet" href="/css/psw.css"/>
|
||||||
|
<title>Your Friendly Error Code Index :: My site of stuff :: Paul Wilde</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="page">
|
||||||
|
<a id="top"></a>
|
||||||
|
<header>
|
||||||
|
<h1>Paul Wilde :: My site of stuff <a href="#navigation" title="Navigation">🗺</a> <a href="#contact" title="Contact">🗪</a></h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="main yourfriendlyerrorcodeindex">
|
||||||
|
|
||||||
|
<h2>Your Friendly Error Code Index</h2>
|
||||||
|
<p>Inspirational instructions for dealing with unhelpful error codes</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<hr />
|
||||||
|
<sub>
|
||||||
|
|
||||||
|
<sub>Published : Wed, 22 November 2023 at 13:53pm +0100<br/>
|
||||||
|
|
||||||
|
|
||||||
|
</sub>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<a href="#top">Top</a>
|
||||||
|
<h2>Navigation</h2>
|
||||||
|
<a id="navigation"></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/">Home</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/thanks/">Thanks</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/aboutme/">About Me</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/tech/">Tech Stuff</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/websites/">Websites</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/recipes/">Recipes</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/poems/">Poems</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://wilde-it.co.uk" target="_blank">My Business</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>Contact</h2>
|
||||||
|
<a id="contact"></a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://codeberg.org/pswilde" title="My main Git Repository">My Codeberg Repo</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a rel="me" href="https://notnull.click/users/paul" title="Find me on the Fediverse">Fediverse</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://matrix.to/#/@psw:matrix.wilde.cloud" title="Send me a message on Matrix">Matrix</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</footer>
|
||||||
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -67,13 +67,6 @@ Yeah, just that really. (The image is <em>not</em> me)</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -125,7 +118,7 @@ Yeah, just that really. (The image is <em>not</em> me)</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -67,13 +67,6 @@ the geese website was made as a bit of fun and to please minor obsession with ge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -125,7 +118,7 @@ the geese website was made as a bit of fun and to please minor obsession with ge
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -26,20 +26,30 @@
|
||||||
<p>A few examples of some websites I have worked on. Some are just for fun, some are for business.</p>
|
<p>A few examples of some websites I have worked on. Some are just for fun, some are for business.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="https://errors.notnull.space/" target="_blank">Your Friendly Error Code Index</a>
|
||||||
|
<p>Inspirational instructions for dealing with unhelpful error codes</p>
|
||||||
|
|
||||||
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/errorindex.1fc47800e0bc00ca.webp" alt="Image of Your Friendly Error Code Index website" />
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a href="https://skeletor.paulwilde.uk" target="_blank">St Skeletor's Day</a>
|
<a href="https://skeletor.paulwilde.uk" target="_blank">St Skeletor's Day</a>
|
||||||
<p>St Skeletor’s Day<br />
|
<p>St Skeletor’s Day<br />
|
||||||
February 15th<br />
|
February 15th<br />
|
||||||
Every Year</p>
|
Every Year</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/skeletor.png" alt="Image of St Skeletor's Day website" />
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/skeletor.1aa968e13e105de7.webp" alt="Image of St Skeletor's Day website" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a href="https://rossrates.uk" target="_blank">Ross Rates</a>
|
<a href="https://rossrates.uk" target="_blank">Ross Rates</a>
|
||||||
<p>Rate Stuff with Ross, quite simple.</p>
|
<p>Rate Stuff with Ross, quite simple.</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/rossrates.png" alt="Image of Ross Rates website" />
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/rossrates.02e6f7e2667ff87e.webp" alt="Image of Ross Rates website" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -47,7 +57,8 @@ Every Year</p>
|
||||||
<p>A website directory of all words that can be associated with their letters by <em>not</em>
|
<p>A website directory of all words that can be associated with their letters by <em>not</em>
|
||||||
sounding as their corresponding letter should do.</p>
|
sounding as their corresponding letter should do.</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/unphonetic.png" alt="Image of Unphonetic ABC website" />
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/unphonetic.11b6ff1ac08bf65a.webp" alt="Image of Unphonetic ABC website" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -55,7 +66,8 @@ sounding as their corresponding letter should do.</p>
|
||||||
<p>Simple single page website for a local accountancy business.
|
<p>Simple single page website for a local accountancy business.
|
||||||
Has additional Vue.js implementation for news and exchange rates updates.</p>
|
Has additional Vue.js implementation for news and exchange rates updates.</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/bedfordandco.png" alt="Image of Bedford & Co website" />
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/bedfordandco.7bd6863d15eed8c1.webp" alt="Image of Bedford & Co website" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -63,7 +75,8 @@ Has additional Vue.js implementation for news and exchange rates updates.</p>
|
||||||
<p>A local IT business website detailing available services.
|
<p>A local IT business website detailing available services.
|
||||||
Our business website.</p>
|
Our business website.</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/wildeit.png" alt="Image of Wilde IT website" />
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/wildeit.ad91f31ead3e5633.webp" alt="Image of Wilde IT website" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -71,7 +84,8 @@ Our business website.</p>
|
||||||
<p>A spoof single page animation website of a secret society dedicated to finding all
|
<p>A spoof single page animation website of a secret society dedicated to finding all
|
||||||
lost tin openers.</p>
|
lost tin openers.</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/ltos.png" alt="Image of The Lost Tin Opener Society website" />
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/ltos.23db680caeee0015.webp" alt="Image of The Lost Tin Opener Society website" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -79,15 +93,8 @@ lost tin openers.</p>
|
||||||
<p>Just a very silly website with an animated face making sounds.<br />
|
<p>Just a very silly website with an animated face making sounds.<br />
|
||||||
Yeah, just that really. (The image is <em>not</em> me)</p>
|
Yeah, just that really. (The image is <em>not</em> me)</p>
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/faces.png" alt="Image of Noisy Faces website" />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
<img class="website-img" src="https://paulwilde.uk/processed_images/faces.4077c373a0c2261f.webp" alt="Image of Noisy Faces website" />
|
||||||
<a href="https://geese.wilde.cloud" target="_blank">The Geese Webpage</a>
|
|
||||||
<p>Starting life as a (sort of inappropriate) parody of a certain popular dating website
|
|
||||||
the geese website was made as a bit of fun and to please minor obsession with geese.</p>
|
|
||||||
|
|
||||||
<img class="website-img" src="/images/websites/geeseWildeCloud.png" alt="Image of The Geese Webpage website" />
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
@ -103,7 +110,7 @@ the geese website was made as a bit of fun and to please minor obsession with ge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Tue, 03 August 2021 at 16:53pm +0100
|
Wed, 22 November 2023 at 13:53pm +0100
|
||||||
|
|
||||||
|
|
||||||
</sub>
|
</sub>
|
||||||
|
@ -140,13 +147,6 @@ the geese website was made as a bit of fun and to please minor obsession with ge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -198,7 +198,7 @@ the geese website was made as a bit of fun and to please minor obsession with ge
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -67,13 +67,6 @@ lost tin openers.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -125,7 +118,7 @@ lost tin openers.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
142
websites/page/2/index.html
Normal file
|
@ -0,0 +1,142 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-gb">
|
||||||
|
<head>
|
||||||
|
<link rel="shortcut icon" type="image/jpg" href='/images/favicon.png'/>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="description" content="My site of stuff" />
|
||||||
|
<meta property="og:title" content="Paul Wilde :: Paul Wilde" />
|
||||||
|
<meta property="og:image" content='/images/favicon.png' />
|
||||||
|
<meta property="og:description" content="My site of stuff" />
|
||||||
|
<link rel="stylesheet" href="/css/gemini.css"/>
|
||||||
|
<link rel="stylesheet" href="/css/psw.css"/>
|
||||||
|
<title>Websites :: My site of stuff :: Paul Wilde</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="section">
|
||||||
|
<a id="top"></a>
|
||||||
|
<header>
|
||||||
|
<h1>Paul Wilde :: My site of stuff <a href="#navigation" title="Navigation">🗺</a> <a href="#contact" title="Contact">🗪</a></h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="main ">
|
||||||
|
|
||||||
|
<h2>Websites</h2>
|
||||||
|
<p>A few examples of some websites I have worked on. Some are just for fun, some are for business.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="https://geese.wilde.cloud" target="_blank">The Geese Webpage</a>
|
||||||
|
<p>Starting life as a (sort of inappropriate) parody of a certain popular dating website
|
||||||
|
the geese website was made as a bit of fun and to please minor obsession with geese.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<img class="website-img" src="https://paulwilde.uk/processed_images/geeseWildeCloud.fc44f12ad3608cae.webp" alt="Image of The Geese Webpage website" />
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<hr />
|
||||||
|
<sub>
|
||||||
|
|
||||||
|
<sub>Last Modified :
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Wed, 31 March 2021 at 10:05am +0100
|
||||||
|
|
||||||
|
|
||||||
|
</sub>
|
||||||
|
|
||||||
|
</sub>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<a href="#top">Top</a>
|
||||||
|
<h2>Navigation</h2>
|
||||||
|
<a id="navigation"></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/">Home</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/thanks/">Thanks</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/aboutme/">About Me</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/tech/">Tech Stuff</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/websites/">Websites</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/recipes/">Recipes</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://paulwilde.uk/poems/">Poems</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://wilde-it.co.uk" target="_blank">My Business</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>Contact</h2>
|
||||||
|
<a id="contact"></a>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://codeberg.org/pswilde" title="My main Git Repository">My Codeberg Repo</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a rel="me" href="https://notnull.click/users/paul" title="Find me on the Fediverse">Fediverse</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://matrix.to/#/@psw:matrix.wilde.cloud" title="Send me a message on Matrix">Matrix</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</footer>
|
||||||
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -66,13 +66,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -124,7 +117,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -68,13 +68,6 @@ Every Year</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -126,7 +119,7 @@ Every Year</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -67,13 +67,6 @@ sounding as their corresponding letter should do.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -125,7 +118,7 @@ sounding as their corresponding letter should do.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -67,13 +67,6 @@ Our business website.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://paulwilde.uk/obtainium/">Obtainium Redirect</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://paulwilde.uk/dev/">Development</a>
|
<a href="https://paulwilde.uk/dev/">Development</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -125,7 +118,7 @@ Our business website.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
<script async defer data-domain="paulwilde.uk" src="https://plausible.wilde.cloud/js/plausible.js"></script>
|
<script async defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|