forked from creativeslice/goldenegg-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-styles.php
executable file
·100 lines (66 loc) · 4.31 KB
/
page-styles.php
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
<?php get_header(); // Template Name: Style Guide ?>
<div id="content">
<div class="wrap">
<div id="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<header class="article-header">
<h1 class="page-title"><strong>PAGE TITLE:</strong> <?php the_title(); ?></h1>
</header>
<section class="entry-content">
<?php the_content(); ?>
<h1>H1 Headline</h1>
<p>Paragraph text following an H1 <a href="#">Headline</a> with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</p>
<hr>
<h2>H2 Headline</h2>
<p>Paragraph text following an H2 Headline with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</p>
<hr>
<h1>H1 Headline</h1>
<h3>H3 Headline following an H1</h3>
<p>Paragraph text following an H3 Headline with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</p>
<hr>
<h4>H4 Headline</h4>
<p>Paragraph text following an H4 Headline with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</p>
<hr>
<p><strong>Regular bold <em>italic text here</em></strong> with a line break<br />Paragraph text with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</p>
<ul>
<li>UNORDERED LIST</li>
<li>Another unordered list item with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</li>
<li>Last item to this unordered list</li>
</ul>
<p>More paragraph text here with additional text to make it wrap so we can test line height.</p>
<hr>
<p>Paragraph text with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</p>
<ol>
<li>ORDERED LIST</li>
<li>Another unordered list item with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height.</li>
<li>Last item to this unordered list</li>
</ol>
<p>More paragraph text here with additional text to make it wrap so we can test line height.</p>
<hr>
<p>Paragraph text with additional <strong>bold text</strong> to make it wrap so we can test <em>italic text</em> and line height. More paragraph text here with additional text to make it wrap so we can test line height. More paragraph text here with additional text to make it wrap so we can test line height.</p>
<a class="button" href="#">Stand alone button ›</a>
<p>Additional paragraph text with <strong><em>bold italic text</em></strong> to make it wrap so we can test <em>italic text</em> and line height. More paragraph text here with additional text to make it wrap so we can test line height. More paragraph text here with additional text to make it wrap so we can test line height. <a class="button" href="#">Inline button</a> More paragraph text here with additional text to make it wrap so we can test line height. More paragraph text here with additional text to make it wrap so we can test line height. More paragraph text here with additional text to make it wrap so we can test line height. More paragraph text here with additional text to make it wrap so we can test line height.</p>
<hr>
<div class="cf">
<h2>Simple Golden Ratio</h2>
<div class="goldlarge">
<p><strong>goldlarge</strong><br />Just some text here to see how it wraps and see how the padding works, or if it works at all...</p>
</div>
<div class="goldsmall">
<p><strong>goldsmall</strong><br /> Right sidebar</p>
</div>
<div class="goldlarge last-col">
<p><strong>goldlarge last-col</strong><br /> Just some text here to see how it wraps and see how the padding works, or if it works at all...</p>
</div>
<div class="goldsmall first-col">
<p><strong>goldsmall first-col</strong><br />Right sidebar</p>
</div>
</div>
</section>
</article>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>