Started working on the project structure and design of the site
This commit is contained in:
45
src/_layouts/default.html
Normal file
45
src/_layouts/default.html
Normal file
@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ page.title }}</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/falador.css">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
||||
<script src="/assets/scripts/rimmington.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- main navigation bar -->
|
||||
<nav id="main-navigation">
|
||||
<ul class="left-menu">
|
||||
<li><a href="{% link index.markdown %}">Home</a></li>
|
||||
<li><a href="{% link index.markdown %}">Updates</a></li>
|
||||
<li><a href="{% link index.markdown %}">Server Info</a></li>
|
||||
</ul>
|
||||
|
||||
<ul class="right-menu">
|
||||
<li><a href="{{ site.links.bitgoblin }}">Bit Goblin</a></li>
|
||||
<li><a href="{{ site.links.youtube_channel }}">YouTube</a></li>
|
||||
<li><a href="{{ site.links.forum }}">Forum</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- minecraft banner -->
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="columns twelve">
|
||||
<header id="banner">
|
||||
<h1>Bit Goblin <3 Minecraft</h1>
|
||||
</header>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- page content -->
|
||||
<div class="container">
|
||||
{{ content }}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
7
src/_layouts/home.html
Normal file
7
src/_layouts/home.html
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
This is the home page.
|
||||
|
||||
{{ content }}
|
7
src/_layouts/page.html
Normal file
7
src/_layouts/page.html
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
This is a page layout.
|
||||
|
||||
{{ content }}
|
7
src/_layouts/post.html
Normal file
7
src/_layouts/post.html
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
This is a post layout.
|
||||
|
||||
{{ content }}
|
Reference in New Issue
Block a user