Initial commit
Migrated from Astro.
This commit is contained in:
commit
a62acb33c3
14 changed files with 3739 additions and 0 deletions
15
source/_layouts/base.html.twig
Normal file
15
source/_layouts/base.html.twig
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!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="/build/tailwind.css" />
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}
|
||||
{% block content %}{% endblock %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
16
source/index.html.twig
Normal file
16
source/index.html.twig
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: base
|
||||
use:
|
||||
- examples
|
||||
---
|
||||
|
||||
<ul>
|
||||
{% for example in data.examples %}
|
||||
<li>
|
||||
<a href="{{ example.url }}">
|
||||
{{ example.title }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue