Initial commit
This commit is contained in:
commit
ccfd866f59
14 changed files with 3732 additions and 0 deletions
0
source/_includes/.keep
Normal file
0
source/_includes/.keep
Normal file
19
source/_layouts/base.html.twig
Normal file
19
source/_layouts/base.html.twig
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ site.locale|default('en') }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
|
||||
<link rel="stylesheet" href="/css/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
{% block content_wrapper %}
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
5
source/css/styles.css
Normal file
5
source/css/styles.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
.container {
|
||||
margin: 0 auto;
|
||||
max-width: 768px;
|
||||
padding: 0 1rem;
|
||||
}
|
4
source/index.md
Normal file
4
source/index.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
layout: base
|
||||
title: Hello, World!
|
||||
---
|
Loading…
Add table
Add a link
Reference in a new issue