Compare commits

...

4 Commits

Author SHA1 Message Date
rv 62ebb7732e 10-31-23_00:21:02 2023-10-31 00:21:02 -06:00
rv 62c42d8bbe 10-31-23_00:15:52 2023-10-31 00:15:52 -06:00
rv 2a4710cf55 10-31-23_00:00:31 2023-10-31 00:00:31 -06:00
rv 00809e459f 10-30-23_23:49:38 2023-10-30 23:49:38 -06:00
9 changed files with 24 additions and 35 deletions

View File

@ -2,7 +2,7 @@
title: Astragroup Status Updates
email: admin@astragroup.info
description: >-
A simple micro-blog for status updates relating to various AG services.
A micro-blog for status updates relating to various AG services.
(Hosting, NextCloud, Gitea, Etc.)
baseurl: ""
url: "https://status.astragroup.info"

View File

@ -1,4 +1,5 @@
Rax Ventus:
name: Rax Ventus
image: rax_round.png
bio: Intentionally Left Blank, for testing purposes.
socials:

View File

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<meta name="theme-color" content="#0066ff">
<meta name="theme-color" content="#d38700">
<link rel="stylesheet" href="/assets/authorblurb.css">
<link rel="icon" type="image/png" href="/assets/img/AstraGroup_128x128.png">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6034836920654252" crossorigin="anonymous"></script>

View File

@ -1,11 +1,10 @@
---
layout: default
---
<!-- <link rel="stylesheet" href="/authorblurb.css"> -->
<small>{{ page.date | date: "%-d %B %Y" }}</small>
<h1>{{ page.title }}</h1>
<p class="view">by {{ page.author | default: site.author }}</p>
<p class="view">by {{ page.author.name | default: site.author }}</p>
{{content}}
@ -13,11 +12,11 @@ layout: default
<hr>
{% assign authorData = site.data.authors[site.author] %}
{% assign authorData = site.data.authors[page.author|default: site.author] %}
<div class="author-bio">
<img src="/assets/img/{{ authorData.image }}" alt="{{ site.author }}'s profile picture." />
<div class="author-name">{{ site.author }}</div>
<img src="/assets/img/{{ authorData.image }}" alt="{{ page.author.name | default: site.author }}'s profile picture." />
<div class="author-name">{{ page.author.name | default: site.author }}</div>
<p class="bio">{{ authorData.bio }}</p>
{% for social in authorData.socials %}
<a href="{{ social.url }}" class="social-link">{{ social.type }}</a>

View File

@ -5,9 +5,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<meta name="theme-color" content="#0066ff">
<meta name="theme-color" content="#d38700">
<link rel="stylesheet" href="/assets/authorblurb.css">
<link rel="stylesheet" href="/assets/additionalCSS.css"
<link rel="icon" type="image/png" href="/assets/img/AstraGroup_128x128.png">
{% seo %}
</head>

View File

@ -2,6 +2,7 @@
layout: post
title: Services Update
published: true
author: "Rax Ventus"
date: 2023-10-27 18:35
---

7
_posts/Template.yml Normal file
View File

@ -0,0 +1,7 @@
---
layout: post
title: Services Update
published: true
author: "Rax Ventus"
date: 202X-XX-XX XX:XX
---

View File

@ -1,23 +0,0 @@
@font-face {
font-family: 'neuropoliticalregular';
src: url('../assets/neuropolitical_rg-webfont.woff2') format('woff2'),
url('../assets/neuropolitical_rg-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@supports (-webkit-text-stroke: 2px white) {
body {
-webkit-text-stroke: 2px #d38700;
}
}
@supports (-webkit-text-stroke: 2px white) {
.nav:hover {
-webkit-text-stroke: 2px #00bbc4;
}
}
#large-header {
position: fixed;
z-index: -100;
}

View File

@ -19,18 +19,23 @@
.author-bio .author-name {
padding-top: 4px;
padding-left: 4px;
padding-top: 8px;
padding-left: 8px;
}
.author-bio .bio {
padding-right: 24px;
padding-left: 8px;
padding-bottom: 4px;
border-radius: 12px;
border-width: 4px;
border-style: groove;
border-color: #00bbc4;
background-color: rgba(0, 187, 196, 0.4);
}
.author-bio .social-link {
padding-left: 12px;
padding-bottom: 4px;
}
color: #d38700;
text-decoration-color: #d38700;
}