-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: GCWeb Jekyll website example
---
<p>This is a simple website using the GCWeb Jekyll theme</p>
<h2>Minimum requirement</h2>
<ul>
<li>Create a <code>_config.yml</code></li>
<li>Define a layout globally or per page</li>
</ul>
<h2>Site structure and minimalist content (With a default global layout)</h2>
<dl>
<dt><code>_config.yml</code></dt>
<dd>
<pre><core># Remote theme, use the latest version
remote_theme: wet-boew/gcweb-jekyll
#
# Page front matter defaults
defaults:
- scope:
path: "" # Ensure it's applied to all pages
values:
layout: default</code></pre>
</dd>
<dt><code>index.html</code></dt>
<dd>
<pre><core>---
title: GCWeb Jekyll website example
---
<p>This is a simple website using the GCWeb Jekyll theme</p></code></pre>
</dd>
</dl>
<h2>Alternative site structure and minimalist content</h2>
<dl>
<dt><code>_config.yml</code></dt>
<dd>
<pre><core># Remote theme, use the latest version
remote_theme: wet-boew/gcweb-jekyll</code></pre>
</dd>
<dt><code>index.html</code></dt>
<dd>
<pre><core>---
title: GCWeb Jekyll website example
layout: default
---
<p>This is a simple website using the GCWeb Jekyll theme</p></code></pre>
</dd>
</dl>