This commit is contained in:
WickedJack99
2022-09-21 14:17:10 +02:00
parent 68ae5f9eec
commit 268b15cbc8
7 changed files with 40 additions and 18 deletions

View File

@@ -1,7 +1,15 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
{% include navigation.html %}
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}
{% include footerNavbar.html %}
</body>
</html>

View File

@@ -4,11 +4,11 @@ author: Aaron
title: 2022 Week 38 How to create a static website with Jekyll and deploy it on GitHubPages
---
<div>
<div class="outerDiv">
<div id="prerequisits">
<h3>Prerequisits</h3>
Install <a href="https://git-scm.com/downloads" target="_blank">Git</a>
Install <a href="https://www.ruby-lang.org/en/documentation/installation/" target="_blank">Ruby</a>
Install <a href="https://git-scm.com/downloads" target="_blank">Git</a><br>
Install <a href="https://www.ruby-lang.org/en/documentation/installation/" target="_blank">Ruby</a><br>
Install Jekyll and Bundler<br>
<div class="console">
<code>$ gem install jekyll bundler</code>

11
localdocs/_sass/blog.scss Normal file
View File

@@ -0,0 +1,11 @@
div.console {
background-color: lightgray;
color: black;
padding-left: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
div.outerDiv {
padding-left: 20px;
}

View File

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