-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·318 lines (247 loc) · 12.2 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<!DOCTYPE html>
<html lang="en">
<head>
<!-- BASIC NEEDS -->
<meta charset="UTF-8">
<title>P Torr's GitHub site</title>
<meta name="author" content="Peter Torr Smith">
<meta name="description" content="home page for Peter Torr Smith's Enspiral Dev Academy journey">
<!-- MOBILE NEEDS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT -->
<link href='//fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'>
<!-- STYLES -->
<!-- Normalize and Skeleton styles -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css"> -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css"> -->
<!-- Our own "Mobile First" custom styles to override as needed and set responsive styles -->
<link rel="stylesheet" href="styles/main-grid.css">
<!-- <link rel="stylesheet" href="styles/nav-target-nav-style.css"> -->
<!-- SCRIPTS -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- FAVICON -->
<link rel="icon" href="//www.hirethings.co.nz/favicon.ico" type="image/gif">
</head>
<body>
<!-- migrating to using CSS Grid and semantic HTML5
Stop using skeleton so as to learn more
Trying to do good HTML5 semantic structuring
See https://webdesign.tutsplus.com/articles/the-truth-about-multiple-h1-tags-in-the-html5-era--webdesign-16824
Sectioning root tags: <body>, <blockquote>, <figure>, <td>, <details>, <dialog>, <fieldset>
Sectioning content tags: <section>, <article>, <nav>, <aside>
Heading tags: <h1>, <h2>, <h3>, <h4>, <h2>, <h6>
<main> should be around group of all significant content sections
<header> and <footer> can be within each content section
h1 can be within each content section
headers should not be used for sub-titles/headings
-->
<!-- main index page container to be a grid -->
<div class="page index grid">
<header class="grid">
<div>
<!-- <a accesskey="2" id="nav-open" class="jump-link" href="#main-nav"><span class="vishid">Jump to navigation</span></a> -->
<h1>Peter Torr Smith</h1>
<p class="subtitle">Enspiral Dev Academy - Hihi 2018</p>
</div>
<div>
<img src="images/PeterTorrSmith2018-300px-width.jpg" alt="Peter Torr Smith colour photo" class="logo">
</div>
</header>
<nav class="grid">
<p class="current">
<a href="">Home</a>
</p>
<p>
<a href="blog/blog-index.html">Blogs</a>
</p>
<p>
<a href="projects/projects-index.html">Projects</a>
</p>
<p>
<a href="random/random-index.html">Random</a>
</p>
<p>
<a href="history/history-index.html">History</a>
</p>
<!-- <ul class="grid">
<li>
<a href="index.html" class="current">Home</a>
</li>
<li>
<a href="blog/blog-index.html">Blogs</a>
</li>
<li>
<a href="projects/projects-index.html">Projects</a>
</li>
<li>
<a href="random/random-index.html">Random</a>
</li>
<li>
<a href="history/history-index.html">History</a>
</li>
</ul> -->
</nav>
<blockquote cite="Confucius">
<p>“It does not matter how slowly you go as long as you do not stop.”</p>
<cite>Confucius</cite>
</blockquote>
<section class="hero grid">
<div class="promo-nav">
<a href="blog/blog-index.html"><img src="images/S5-DotsChallenge.gif" alt="alt text" class=""></a>
<h3><a href="blog/blog-index.html">Blogs</a></h3>
<span>Tech, Cultural and Reflective Ramblings</span>
</div>
<div class="promo-nav">
<a href="projects/projects-index.html"><img src="images/S6-Minesweeper.gif" alt="alt text" class=""></a>
<h3><a href="projects/projects-index.html">Projects</a></h3>
<span>My project workspace</span>
</div>
<div class="promo-nav">
<a href="random/random-index.html"><img src="images/html5doctor.com h5d-sectioning-flowchart.PNG" alt="alt text"
class=""></a>
<h3><a href="random/random-index.html">Random Resources</a></h3>
<span>Useful links and snippets</span>
</div>
<div class="promo-nav">
<a href="history/history-index.html"><img src="images/PeterTorrSmithColour-100px-width.jpg" alt="alt text"
class=""></a>
<h3><a href="history/history-index.html">History</a></h3>
<span>People, Places, Projects, Profession, Play</span>
</div>
</section>
<main class="features grid">
<section class="latest">
<h1>Latest</h1>
<div class="latest-promo">
<h2><a href="blog/c8-connecting.html">C8 Blog - Connecting and Empathy</a></h2>
<p>Developing Empathy through understanding and connecting with others</p>
</div>
<div class="latest-promo">
<a href="blog/t8-scope.html"><img src="images/jsFiddleFunctionScope.png" alt="T8 Blog - 'Scope' and JavaScript"></a>
<h2><a href="blog/t8-scope.html">T8 Blog - 'Scope' and JavaScript</a></h2>
<p>A simple explanation</p>
</div>
<div class="latest-promo">
<a href="./projects/js-calculator/index.html"><img src="./projects/js-calculator/images/jplogo-ct2.jpg" alt="James' and Peter's Javascript Calculator"></a>
<h2><a href="projects/js-calculator/index.html">T8 Project - James' and Peter's Javascript Calculator</a></h2>
<p>More than the average abacus!</span></p>
<a href="projects/js-calculator/index.html" class="button button-primary">Do the numbers!</a>
</div>
<div class="latest-promo">
<!--<a href="c7-motivation.html"><img src="../images/SIYCh5.jpg"
alt="Search Inside Yourself: Chapter 5"></a>-->
<h2><a href="blog/c7-motivation.html">C7 Blog - Motivation, Self and Resilience</a></h2>
<p>Understanding our motives, and finding sustained motivation</p>
</div>
<div class="latest-promo">
<a href="blog/c6-control.html"><img src="images/SIYCh5.jpg" alt="Search Inside Yourself: Chapter 5"></a>
<h2><a href="blog/c6-control.html">C6 Blog - Self Regulation: Triggers, Choices and Responses</a></h2>
<p>Beyond self-control... and goodbye to reactions</p>
</div>
<div class="latest-promo">
<a href="blog/t6-js-language.html"><img src="images/jsCreateObjectWithPropertiesAndCollection.PNG" alt="Screnshot: creating the board object in JavaScript"></a>
<h2><a href="blog/t6-js-language.html">T6 Blog - JavaScript Basics: Objects, Collections, Functions and
Quotes</a></h2>
</div>
<div class="latest-promo">
<a href="blog/c5-self-confidence.html"><img src="images/SIYCh4.PNG" alt="Search Inside Yourself: Chapter 4"></a>
<h2><a href="blog/c5-self-confidence.html">C5 Blog - Mindfulness, Self Awareness and Confidence blog</a></h2>
<p>
</div>
<div class="latest-promo">
<a href="dom-events-and-classes/"><img src="images/S6-Minesweeper.gif" alt="Pete's first Javascript event Dots Challenge"></a>
<h2><a href="projects/minesweeper/index.html">T5 Project - Pete's Javasript Minesweeper Challenge</a></h2>
<p>my first real Javascript interactive game!</span></p>
<a href="projects/minesweeper/index.html" class="button button-primary">Play Minesweeper</a>
</div>
<div class="latest-promo">
<a href="blog/t5-problem-solving.html"><img src="images/S5-DotsChallenge.gif" alt="alt text"></a>
<h2><a href="blog/t5-problem-solving.html">T5 Blog - Javascriptand classes - Problem Solving</a></h2>
<p>and my first Javascript interactive game!</span></p>
</div>
<div class="latest-promo">
<a href="projects/dom-events-and-classes/"><img src="images/S5-DotsChallenge.gif" alt="Pete's first Javascript event Dots Challenge"></a>
<h2><a href="projects/dom-events-and-classes/">T4 Project - Pete's first Javascript event Dots Challenge</a></h2>
<p>and my first Javascript interactive game!</span></p>
<a href="projects/dom-events-and-classes/" class="button button-primary">Play Dot Counter</a>
</div>
</section>
<section class="recent">
<h1>Recent Stuff</h1>
<div class="recent-promo">
<a href="blog/c4-daily-mindfulness.html"><img src="images/PeterTorrSmithColour - eyes.jpg" alt="alt text"></a>
<h2><a href="blog/c4-daily-mindfulness.html">C4 Blog - daily mindfulness</a></h2>
<p>And reading Ch 3 of <span class="work-title">Search Inside Yourself</span></p>
</div>
<div class="recent-promo">
<a href="blog/t4-javascript-basics.html"><img src="images/FreeCodeCampFun.png" alt="JavaScript Basics"></a>
<h2><a href="blog/t4-javascript-basics.html">T4 Blog - Learning JavaScript Basics</a></h2>
<p>Basic language elements, arrays, objects, looping and ternary operators</p>
</div>
<div class="recent-promo">
<a href="blog/c3-meditation-process.html"><img src="images/MeditateOverProcessOverProduct.jpg" alt="Pete Meditating with Muse"></a>
<h2><a href="blog/c3-meditation-process.html">C3 Blog - Musings on Process and Meditation</a></h2>
<p>Just do it and trust the process... and the breath of life</p>
</div>
<div class="recent-promo">
<a href="blog/t3-design-to-web-blog.html"><img src="images/wireframes/wireframe-index-page-mobile.jpg" alt="hand drawn wireframes for mobile and desktop"></a>
<h2><a href="blog/t3-design-to-web-blog.html">T3 Blog - Design to web process</a></h2>
<p>Learning Skeleton and rebuilding the blog structure.<br>
Getting the semantic structure right and leveraging a basic CSS framework</p>
<p>Come have a look at my wireframes..</p>
</div>
<div class="recent-promo">
<h2><a href="blog/c2-emotional-intelligence.html">C2 Blog - Emotional Intellgence</a></h2>
</div>
<div class="recent-promo">
<h2><a href="blog/t2-html-css-dom-p2.html">T2 Blog - CSS and DOM - Part 2</a></h2>
</div>
<div class="recent-promo">
<h2><a href="blog/t2-html-css-dom-p1.html">T2 Blog - CSS and DOM - Part 1</a></h2>
</div>
<div class="recent-promo">
<h2><a href="blog/c1-time-and-habits-blog.html">C1 Blog - Time and Habits</a></h2>
</div>
<div class="recent-promo">
<h2><a href="blog/c1-reflection-blog.html">C1 Blog - Reflection</a></h2>
</div>
<!-- <div class="recent-promo ">
<a href="blog/blog-template.html"><img src="images/PeterTorrSmithColour-100px-width.jpg" alt="alt text"></a>
<h4><a href="blog/blog-template.html">A Recent Thing</a></h4>
<p>Shorter Summary/intro to Article, Blog, Project, History or Random</p>
</div> -->
<div class="show-more">
<a href="#">more...</a>
</div>
</section>
</main>
<!-- FOOTER COMMON -->
<section class="bottom-nav">
<a href="#">Top</a>
</section>
<section class="pre-footer">
<!-- <div>an optional pre-footer space</div> -->
</section>
<footer>
<!-- <nav id="main-nav" role="navigation">
<ul data-menuTitle="Example Menu" class="menu">
<li><a accesskey="h" href="#">Home</a></li>
<li><a accesskey="a" href="#">About</a></li>
<li><a accesskey="w" href="#">Work</a></li>
<li><a accesskey="b" href="#">Blog</a></li>
<li><a accesskey="c" href="#">Contact</a></li>
</ul>
<a id="nav-close" class="jump-link" href="#"><span class="vishid">Jump to top</span></a>
</nav> -->
<div>Peter Torr Smith</div>
<div>
<span class="facebook">f</span>
<span class="twitter">t</span>
</div>
<div>
<span><a href="index-non-grid.html">© 2018</a></span>
</div>
</footer>
</div>
</body>
</html>