-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcode.html
More file actions
75 lines (71 loc) · 2.41 KB
/
Copy pathcode.html
File metadata and controls
75 lines (71 loc) · 2.41 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
---
title: Code
permalink: code
layout: page
background: yellow
color: white
menu: true
weight: 2
category: code
---
<header class="white center mb2 uppercase">
<img
src="{{ '/assets/images/square.svg' | prepend: site.baseurl }}"
alt=""
aria-hidden="true"
class="fadeInDown animated title-icon--square"
/>
<h1>{{ page.title }}</h1>
</header>
<div class="col-12 px2 md-col-8 mx-auto columize">
<p>
Nearly 20 years combining web development and design. Started as a designer,
evolved into fullstack development while keeping a strong eye for UI/UX.
Extensive civic tech experience building platforms for public institutions
and municipalities.
</p>
<p>
Specialized in design systems, component libraries, and ensuring visual
consistency across multi-tenant applications. WCAG AA accessibility audits
and remediation.
</p>
</div>
<section class="bg-white brown py3 mt4 mb4">
<div class="col-12 px2 md-col-8 mx-auto">
<header class="mb2">
<h2>Principles</h2>
</header>
<div class="flex flex-wrap mb4 mxn2">
<div class="md-col-6 lg-col-4 p2">
<i aria-hidden="true" class="icon-light-up h3 muted"></i>
<h3 class="mb1">KISS</h3>
<p>Keep it stupid simple unless you’re a fan of technical debt.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i aria-hidden="true" class="icon-popup h3 muted"></i>
<h3 class="mb1">Components</h3>
<p>It allows a modular approach and a lot of flexibility.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i aria-hidden="true" class="icon-target h3 muted"></i>
<h3 class="mb1">No surprises</h3>
<p>Make sure what is built has a single responsability.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i aria-hidden="true" class="icon-tools h3 muted"></i>
<h3 class="mb1">Yagni</h3>
<p>Make sure every feature you build is deemed necessary.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i aria-hidden="true" class="icon-ccw h3 muted"></i>
<h3 class="mb1">Lean</h3>
<p>Build – measure – Learn. Always start with a good MVP.</p>
</div>
<div class="md-col-6 lg-col-4 p2">
<i aria-hidden="true" class="icon-github h3 muted"></i>
<h3 class="mb1">Open Source</h3>
<p>If you can make it open source, you should.</p>
</div>
</div>
</div>
</section>