-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphysical-things.html
More file actions
113 lines (96 loc) · 4.51 KB
/
physical-things.html
File metadata and controls
113 lines (96 loc) · 4.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>frank|in</title>
<!-- set base to _site folder to allow relative pathing from root -->
<!-- TODO: Change on the export to prod - need to set that to just site root. -->
<base href="/">
<link rel="stylesheet" href="main.css" />
<link rel="icon" href="favicon.svg" type="image/svg+xml" />
<!-- <link rel="stylesheet" href="../main.css" />
<link rel="icon" href="../favicon.svg" type="image/svg+xml" /> -->
</head>
<body>
<header>
<a href = 'index.html''>
<h1 class = "header-with-icon">
frank|in <i class ="tree-icon"></i> ma|oney
</h1>
</a>
Nice guy, enthusiast, occassional builder of things.
<nav id="menu">
<div id="menu-s">
<div id="contactme">
<i class ="handwave"> </i>
</div>
<span id="m-btn">Menu</span>
</div>
<!-- TODO: generate dynamically from configured categories -->
<ul id="menu-list" class="">
<li class="">
<a data-nav="about" href="about.html">
<span>About</span>
</a>
</li>
<li class="">
<a data-nav="physical-things" href="physical-things.html">
<span>Physical Things</span>
</a>
</li>
<li class="">
<a data-nav="digital-things" href="digital-things.html">
<span>Digital Things</span>
</a>
</li>
<li class="">
<a data-nav="favorite-things" href="favorite-things.html">
<span>Favorite Things</span>
</a>
</li>
<!-- TODO: add rss generation -->
<li class="rss">
<a href="/feeds" rel="alternate" target="_blank" type="application/atom+xml"><svg class="icon" viewBox="0 0 80 80"><title>RSS Feed</title><circle cx="19.91" cy="58.23" r="6.86"></circle><path d="M67.89,65.72H55.7A41.86,41.86,0,0,0,13.89,23.91V11.73A54.06,54.06,0,0,1,67.89,65.72Z"></path><path d="M48.93,65.72H36.75A22.88,22.88,0,0,0,13.89,42.87V30.68A35.08,35.08,0,0,1,48.93,65.72Z"></path></svg></a>
</li>
</ul>
</nav>
</header>
<main class="home article-list">
<section class="grid" id="home-listing">
<!-- Basic layout for home-page article listing. -->
<div class="article physical-things">
<a href="articles/building_the_house.html">
<div class="featured-img" style="background-image: url('assets/dithers/house_dithered.png');"></div>
<h3 class="entry-title">Building the House</h3>
<p class="index-summary"> Triumphs and missteps in building a house on 12 acres of raw land in rural southern New Hampshire. </p>
<time class="published">June 2024</time>
</a>
</div>
<div class="article physical-things">
<a href="articles/experiments_in_permaculture.html">
<div class="featured-img" style="background-image: url('assets/dithers/garden_dithered.png');"></div>
<h3 class="entry-title">Experiments in Permaculture</h3>
<p class="index-summary"> Lessons from my study of permaculture for the past 5 years and implementing new systems on my land each season.</p>
<time class="published">June 2024</time>
</a>
</div>
<div class="article physical-things">
<a href="articles/experiments_in_permaculture.html">
<div class="featured-img" style="background-image: url('assets/dithers/garden_dithered.png');"></div>
<h3 class="entry-title">Experiments in Permaculture</h3>
<p class="index-summary"> Lessons from my study of permaculture for the past 5 years and implementing new systems on my land each season.</p>
<time class="published">June 2024</time>
</a>
</div>
</section>
</main>
<footer>
<p>© 2024 frank|in ma|oney. All rights reserved.</p>
<p> built with low-tech principles.</p>
</footer>
<!-- Update route so more dynamic. -->
<script type="text/javascript" src="main.js"></script>
<!-- <script type="text/javascript" src="../main.js"></script> -->
</body>
</html>