feat: Started about info, re-organized code
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 4s
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 4s
This commit is contained in:
@ -5,7 +5,7 @@ const formattedDate = date.toLocaleDateString('en-GB', {
|
||||
year: 'numeric'
|
||||
});
|
||||
|
||||
const rssFeedUrl = "https://cy.cyper.cc/atom.xml";
|
||||
const rssFeedUrl = "https://cy.cyper.cc/feed.xml";
|
||||
|
||||
export default {
|
||||
author: {
|
||||
|
||||
9
src/_includes/components/headers.liquid
Normal file
9
src/_includes/components/headers.liquid
Normal file
@ -0,0 +1,9 @@
|
||||
{% include "components/meta-tags.liquid" %}
|
||||
|
||||
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
@ -3,15 +3,11 @@
|
||||
<head>
|
||||
|
||||
{% include "components/meta-tags.liquid" %}
|
||||
|
||||
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
|
||||
{% include "components/headers.liquid" %}
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/home.css">
|
||||
{% if css %}
|
||||
<link rel="stylesheet" href="/css/{{ css }}">
|
||||
{% endif %}
|
||||
|
||||
<title>{{ title | default: metadata.title }} - Cyper's Blog</title>
|
||||
</head>
|
||||
|
||||
@ -1,8 +1,13 @@
|
||||
---
|
||||
layout: layout.liquid
|
||||
title: About Cyper
|
||||
css: about.css
|
||||
---
|
||||
|
||||
<div class="container">
|
||||
<h1>About page!</h1>
|
||||
<div>
|
||||
<div class="container">
|
||||
<h1>What is this place?</h1>
|
||||
</div>
|
||||
<div class="container">
|
||||
<h1>About me</h1>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: layout.liquid
|
||||
css: home.css
|
||||
---
|
||||
|
||||
<div>
|
||||
<div class="container flex-adaptive">
|
||||
<div class="flex-1 home-text">
|
||||
@ -52,9 +52,20 @@ layout: layout.liquid
|
||||
<div class="container about">
|
||||
<h1>The Skinny</h1>
|
||||
<div>
|
||||
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ut dolore, architecto voluptates eaque minima doloremque aperiam quaerat quidem veniam animi earum debitis suscipit cum quod sint laudantium, dolores tempore aut. Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ut dolore, architecto voluptates eaque minima doloremque aperiam quaerat quidem veniam animi earum debitis suscipit cum quod sint laudantium, dolores tempore aut.</p>
|
||||
<p>Welcome to my blog!</p>
|
||||
<br>
|
||||
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ut dolore, architecto voluptates eaque minima doloremque aperiam quaerat quidem veniam animi earum debitis suscipit cum quod sint laudantium, dolores tempore aut.</p>
|
||||
<p>
|
||||
This is a place where I, Cyper, will post my yappings, ventings, and random findings I feel like sharing to the world, and I hope you find some enjoyment from my findings. The content I'm writing is for myself, but
|
||||
I hope you may find my some of my posts helpful, entertaining, or a good use of your time. I'd love to hear you find something here that resonates with you, but if not, that's okay too!
|
||||
</p>
|
||||
<br>
|
||||
<p>
|
||||
Currently, this is only a simple static site. At some point in the future, I would love to add in a comment or forum system to hear your feedback and thoughts. However, in the mean time, if you want to reach out, head on over to
|
||||
<a href="/about/">about</a> page, or check the footer of the site to see all of my socials. I am a creature of the internet, so I will eventually see your comments if you reach out. However, I also have random streaks of going dark.
|
||||
If I take too long to respond, please feel free to reach out again. I am always happy to hear from you, and I will do my best to respond as soon as I can!
|
||||
</p>
|
||||
<br>
|
||||
<p>If you're interested in staying up to date with my posts, please find my Atom/RSS feed link in the site footer below! It automatically updates every time I add new posts, so you'll always have the most up to date information with that feed.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user