-
Notifications
You must be signed in to change notification settings - Fork 9
/
examples.html
55 lines (34 loc) · 1.31 KB
/
examples.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
<!doctype html>
<html lang='en' class='special-magic no-js'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>Examples</title>
<meta name='description' content='PSSST (CSS)'>
<meta property='og:image' content='A CSS methodology so great, it needed a name.'>
<link rel='stylesheet' href='styles/site.css'>
<link rel='stylesheet' href='styles/examples.css'>
</head>
<body class='examples-page'>
<header>
<h1 class='loud-voice'><em>PSSST</em> (CSS)</h1>
<h2>Examples</h2>
</header>
<main>
<!-- this is a classic layer-cake slab of a page -->
<section class='generic-page-section'>
<inner-column>
<!-- this is the reusable module that's being used in this section -->
<call-to-action>
<h2 class='attention-voice'>This is a call-to-action module</h2>
<p class='calm-voice'>We don't have a preprocess/templating system in this project. We're trying to keep the <em>idea</em> simple. So, - yes: this could be a JavaScript component or a PHP function or include or whatever you're into. You'll have to just use your imagination for now.</p>
<a href='#' class='button'>
<span>Do it!</span>
</a>
</call-to-action>
</inner-column>
</section>
</main>
<footer></footer>
</body>
</html>