This commit is contained in:
WickedJack99
2022-09-21 16:39:14 +02:00
parent e7502b5b9d
commit fcefb0fcc0
15 changed files with 43 additions and 17 deletions

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/website/assets/css/styles.css">
<link rel="stylesheet" href="{{ '/website/assets/css/' | append: page.css_file }}">
</head>
<body>
{% include navigation.html %}

View File

@@ -1,3 +1,7 @@
body {
background-color: dimgray;
}
div.console {
background-color: lightgray;
color: black;

View File

@@ -0,0 +1,11 @@
body {
background-color: dimgray;
}
img.imageSquare {
align-self: center;
}
#image00 {
background-color: black;
}

View File

@@ -1,7 +1,4 @@
.current {
body {
background-color: dimgray;
color: black;
}
img.imageSquare {
align-self: center;
}

View File

@@ -0,0 +1,3 @@
---
---
@import "index";

View File

@@ -1,6 +1,7 @@
---
layout: default
title: Blog
css_file: styles.css
---
<h1>Latest Posts</h1>

View File

@@ -1,7 +1,12 @@
---
layout: default
title: Homepage
css_file: index.css
---
<h1>Welcome!</h1>
<img class="imageSquare" src="https://images-assets.nasa.gov/image/PIA18033/PIA18033~medium.jpg" alt="Earth Globe NASA shot" height="640px" width="640px">
<div>
<h1>Welcome!</h1>
</div>
<div id="image00">
<img class="imageSquare" src="https://images-assets.nasa.gov/image/PIA18033/PIA18033~medium.jpg" alt="Earth Globe NASA shot" height="640px" width="640px">
</div>