-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.html
63 lines (52 loc) · 2.03 KB
/
README.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<h1 id="russellclasses">Russell Classes</h1>
<h2 id="layouts">LAYOUTS</h2>
<h4 id="mainwrappersmall-contentleftlargeimageright">Main wrapper small-content left & large image right</h4>
<pre><code><div id="content" class="russell-content-wrapper russell-content-reverse">
<section class="russell-content-large russell-content-image"></section>
<section class="russell-content-small russell-content-area">
<div>
</div>
<div class="russell-copyright">
<?php russell_copyright(); ?>
</div>
</section>
</div>
</code></pre>
<h4 id="mainwrapperlargeimageleftsmallcontentright">Main wrapper large image left & small content right</h4>
<pre><code><div id="content" class="russell-content-wrapper">
<section class="russell-content-large russell-content-image"></section>
<section class="russell-content-small russell-content-area">
<div>
</div>
<div class="russell-copyright">
<?php russell_copyright(); ?>
</div>
</section>
</div>
</code></pre>
<h4 id="mainwrapperfullcontentonly">Main wrapper full content only</h4>
<pre><code><div id="content" class="russell-content-wrapper">
<section class="russell-content-full russell-content-area">
<div>
</div>
<div class="russell-copyright">
<?php russell_copyright(); ?>
</div>
</section>
</div>
</code></pre>
<h2 id="elements">Elements</h2>
<h4 id="mainpagetitle">Main Page Title</h4>
<pre><code><h1 class="russell-site-title">
<a href='#'>Title</a>
<span>Description</span>
</h1>
</code></pre>
</body>
</html>