-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04-site-structure.html
More file actions
55 lines (45 loc) · 1.63 KB
/
04-site-structure.html
File metadata and controls
55 lines (45 loc) · 1.63 KB
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
55
<!DOCTYPE html>
<html>
<head>
<title>Author Carpentry</title>
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header>
<a href="http://authorcarpentry.github.io"><img src="img/AClogo.jpg" alt="Author Carpentry logo"></a>
</header>
<nav>
<ul>
<li><a href=".">Lesson</a></li>
<li><a href="00-getting-started.html">Topic 1: Getting Started</a></li>
<li><a href="01-markdown-syntax.html">Topic 2: Syntax</a></li>
<li><a href="02-gh-pages.html">Topic 3: Github Pages</a></li>
<li><a href="03-jekyll-setup.html">Topic 4: Jekyll Setup (optional)</a></li>
<li><a href="04-site-structure.html">Topic 5: Site Structure</a></li>
<li><a href="05-changing-theme.html">Topic 6: Changing your site theme</a></li>
<li><a href="mailto:authorcarpentry@library.caltech.edu">Contact Us</a></li>
</ul>
</nav>
<section>
<h1>Site Structure & Navigation</h1>
<p>?? minutes</p>
<h2>Learning Objectives</h2>
<ul>
<li>Understand the configuration file of your website</li>
<li>Create several pages with some nagivation</li>
</ul>
<hr />
<h1>Site structure</h1>
<p>Previous: <a href="03-jekyll-setup.html">Jekyll Setup</a> Next: <a href="05-changing-theme.html">Changing Your Site Theme</a></p>
</section>
<footer>
<span>© Lesson Contributors</span>
<span><a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img
alt="Creative Commons License" style="vertical-align: middle;"
src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a></span>
<span>This work is licensed under a <a rel="license"
href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution
4.0 International License</a></span>
</footer>
</body>
</html>