This repository has been archived by the owner on Jun 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
54 lines (47 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<title>Caltech Library's Digital Library Development Sandbox</title>
<link rel="stylesheet" href="/css/site.css">
</head>
<body>
<header>
<a href="http://library.caltech.edu"><img src="/assets/liblogo.gif" alt="Caltech Library logo"></a>
</header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="../">Up</a></li>
<li><a href="the-basics.html">The Basics</a></li>
<li><a href="one-element/">One Element</a></li>
<li><a href="simple/">Simple</a></li>
<li><a href="simple-with-nav/">Simple w/Nav</a></li>
<li><a href="go-template-recipes.html">Template Recipes</a></li>
<li><a href="fountain-demo/">Foujntain Demo</a></li>
</ul>
</nav>
<section>
<h1>How To</h1>
<p>This is the documentation for using <em>mkpage</em>. It includes some simple examples
as well as a collection of template recipes solving various problems encountered
working with Go based text/templates.</p>
<h2>Evolving a <em>mkpage</em> project</h2>
<ul>
<li><a href="the-basics.html">The Basics</a> – a quick intro do working with Go text templates</li>
<li><a href="one-element/">One element</a> – turning a markdown document into HTML</li>
<li><a href="simple/">Simple</a> – Setting a page’s CSS path, Title and Content area</li>
<li><a href="simple-with-nav/">Simple w/Nav</a> – A simple page include navigation from Markdown</li>
<li><a href="go-template-recipes.html">Go Template Recipes</a> – A collection of go template recipes</li>
<li><a href="fountain-demo">Fountain content</a> – An interview with a Dog</li>
</ul>
</section>
<footer>
<span><h1><A href="http://caltech.edu">Caltech</a></h1></span>
<span>© 2020 <a href="https://www.library.caltech.edu/copyright">Caltech library</a></span>
<address>1200 E California Blvd, Mail Code 1-32, Pasadena, CA 91125-3200</address>
<span>Phone: <a href="tel:+1-626-395-3405">(626)395-3405</a></span>
<span><a href="mailto:library@caltech.edu">Email Us</a></span>
<a class="cl-hide" href="sitemap.xml">Site Map</a>
</footer>
</body>
</html>