mirror of
https://github.com/hexahigh/portfolio.git
synced 2025-12-12 03:25:06 +01:00
changed the news page to articles and finally updated the projects page
This commit is contained in:
parent
a74adfc56a
commit
12310227bb
@ -5,10 +5,10 @@
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/about">About me</a></li>
|
||||
<li><a href="/news">News</a></li>
|
||||
<li><a href="/articles">Articles</a></li>
|
||||
<li><a href="/#contact">Contact</a></li>
|
||||
<li><a href="projects">Projects</a></li>
|
||||
<li><a href="privacy.html">Privacy Policy</a></li>
|
||||
<li><a href="/projects">Projects</a></li>
|
||||
<li><a href="/privacy.html">Privacy Policy</a></li>
|
||||
<li><a target="_blank" href="https://patreon.com/boofdev">Donate</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@ -13,9 +13,9 @@
|
||||
<p class="text" style="font-family: Broadway-custom;">Boofdev</p>
|
||||
<ul id="nav-pc">
|
||||
<li><a href="/" id:nav-active={$page.url.pathname === '/'}>Home</a></li>
|
||||
<li><a class="colorurl" href="about" id:nav-active={$page.url.pathname === '/about'}>About me</a></li>
|
||||
<li><a href="news/" id:nav-active={$page.url.pathname === '/news'}>News</a></li>
|
||||
<li><a href="projects" id:nav-active={$page.url.pathname === '/projects'}>Projects</a></li>
|
||||
<li><a class="colorurl" href="/about" id:nav-active={$page.url.pathname === '/about'}>About me</a></li>
|
||||
<li><a href="/articles/" id:nav-active={$page.url.pathname === '/articles'}>Articles</a></li>
|
||||
<li><a href="/projects" id:nav-active={$page.url.pathname === '/projects'}>Projects</a></li>
|
||||
<li><a href="/#contact">Contact</a></li>
|
||||
<li><a target="_blank" id="nav-donate">Donate</a></li>
|
||||
</ul>
|
||||
@ -35,9 +35,9 @@
|
||||
<div class="nav-mobile-content-close">
|
||||
<ul>
|
||||
<li><a href="/" id:nav-active={$page.url.pathname === '/'}>Home</a></li>
|
||||
<li><a href="about" id:nav-active={$page.url.pathname === '/about'}>About me</a></li>
|
||||
<li><a href="news/" id:nav-active={$page.url.pathname === '/news'}>News</a></li>
|
||||
<li><a href="projects" id:nav-active={$page.url.pathname === '/projects'}>Projects</a></li>
|
||||
<li><a href="/about" id:nav-active={$page.url.pathname === '/about'}>About me</a></li>
|
||||
<li><a href="/articles/" id:nav-active={$page.url.pathname === '/articles'}>Articles</a></li>
|
||||
<li><a href="/projects" id:nav-active={$page.url.pathname === '/projects'}>Projects</a></li>
|
||||
<li><a href="#contact" id:nav-active={$page.url.pathname === '/'}>Contact</a></li>
|
||||
<li>
|
||||
<a
|
||||
|
||||
@ -1,8 +1,24 @@
|
||||
<script>
|
||||
import Nav from '../Nav.svelte';
|
||||
import Footer from '../Footer.svelte';
|
||||
import { MetaTags } from 'svelte-meta-tags';
|
||||
</script>
|
||||
|
||||
<MetaTags
|
||||
title="Boofdev - Articles"
|
||||
description="On this page i will post articles and news"
|
||||
openGraph={{
|
||||
url: 'https://boofdev.eu.org/articles',
|
||||
title: 'Boofdev - Articles',
|
||||
description: 'On this page i will post articles and news',
|
||||
images: [
|
||||
{
|
||||
url: 'https://boofdev.eu.org/data/images/logoround.png',
|
||||
}
|
||||
]
|
||||
}}
|
||||
/>
|
||||
|
||||
<svelte:head>
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta property="article:published_time" content="">
|
||||
@ -58,17 +74,15 @@
|
||||
|
||||
<div id="index-content">
|
||||
<div class="text" style="text-align: center;">
|
||||
<h1 class="text" style="text-align: center; color: #1470e9;">News</h1>
|
||||
<h1 class="text" style="text-align: center; color: #1470e9;">Articles</h1>
|
||||
<br>
|
||||
<p class="text">Here you can find site-updates and other news.</p>
|
||||
<p>All of the text files are cryptographically signed using my private key in order to prove that these news
|
||||
come from me.</p>
|
||||
<p>You can find the public keys used for verifying and decrypting the text files in the about-me page.</p>
|
||||
<p class="text">On this page i will post articles and news.</p>
|
||||
</div>
|
||||
<br><br>
|
||||
<!-- List of articles -->
|
||||
<div class="text" style="margin-left: 75px;">
|
||||
<h2>Pinned:</h2>
|
||||
<p><a class="colorurl" href="../data/text/news/services.txt">Services i host</a></p>
|
||||
<h2>2023:</h2>
|
||||
<p><a class="colorurl" href="/articles/test-article">Test article - 6/08/2023</a></p>
|
||||
</div>
|
||||
<!-- Donation popup -->
|
||||
<div id="donate-choose-overlay"></div>
|
||||
@ -28,7 +28,7 @@
|
||||
|
||||
<main>
|
||||
<div>
|
||||
<a class="back-button" href="/news">⬅Back</a>
|
||||
<a class="back-button" href="/articles">⬅Back</a>
|
||||
</div>
|
||||
<div id="article-main">
|
||||
<h1>Lorem ipsum</h1>
|
||||
@ -1,8 +1,24 @@
|
||||
<script>
|
||||
import Nav from "../Nav.svelte";
|
||||
import Footer from "../Footer.svelte";
|
||||
import { MetaTags } from "svelte-meta-tags";
|
||||
</script>
|
||||
|
||||
<MetaTags
|
||||
title="Boofdev - Projects"
|
||||
description="Here you can find some of the projects im working on."
|
||||
openGraph={{
|
||||
url: 'https://boofdev.eu.org/projects',
|
||||
title: 'Boofdev - Projects',
|
||||
description: 'Here you can find some of the projects im working on.',
|
||||
images: [
|
||||
{
|
||||
url: 'https://boofdev.eu.org/data/images/logoround.png',
|
||||
}
|
||||
]
|
||||
}}
|
||||
/>
|
||||
|
||||
<svelte:head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
@ -39,31 +55,17 @@
|
||||
<br />
|
||||
<div class="projectscompact">
|
||||
<h3>
|
||||
<a class="colorurl" href="https://boof.eu.org">Main site:</a
|
||||
<a class="colorurl" href="https://boof.eu.org">Main site</a
|
||||
>
|
||||
</h3>
|
||||
<br />
|
||||
<h4 class="text">
|
||||
On this site i have games, tools and software.<br />
|
||||
Some of which i have made, but most of them arent.
|
||||
<h4 class="text" style="max-width: 30%;">
|
||||
This is basically just a place where i put random prototypes and other things i have made when i have been bored. It also contains a few games.
|
||||
</h4>
|
||||
</div>
|
||||
<div class="projectscompact">
|
||||
<h3>
|
||||
<a class="colorurl" href="https://discord.gg/eRCNMuTnpn"
|
||||
>Havocado Reborn</a
|
||||
>
|
||||
</h3>
|
||||
<a href="https://discord.gg/eRCNMuTnpn"
|
||||
><img
|
||||
class="projectimg"
|
||||
src="../data/images/havocado.png"
|
||||
alt="Havocado banner"
|
||||
/></a
|
||||
>
|
||||
<h4 class="text">
|
||||
A project for the game Havocado.<br />
|
||||
The goal is to be able to add custom maps and skins.
|
||||
<h3><a class="colorurl" href="https://gitte.080609.xyz">Gitte</a></h3>
|
||||
<h4 class="text" style="max-width: 30%;">
|
||||
My selfhosted gitea instance. It is run on a raspberry pi 4 which at the moment has no cooling. So i cannot guarentee 100% uptime.
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user