-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (81 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Character Set -->
<meta charset="utf-8">
<!-- Creator of the Website -->
<meta name="author" content="Monte Arreguin">
<!-- Description of Website -->
<meta name="description" content="Replication made by Monte Arreguin">
<!-- Title -->
<title>Pico Site Replication</title>
<!-- Favorite Icon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<!--Font Awesome - for Icons -->
<script src="https://use.fontawesome.com/9a77ea3aef.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Navigation -->
<div class="navigation">
<span class="logo">PICO</span>
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Docs</a></li>
<li><a href="#">Download</a></li>
</ul>
</div>
<!-- Header -->
<div class="header">
<h1>Introducing <span>Pico.</span></h1>
<h2>A stupidly simple <span>&</span> blazing fast, flat file CMS. <br> Making the web easy.</h2>
<a href="#">download now</a>
</div>
<!-- Features -->
<div class="features">
<div class="item">
<i class="fa fa-thumbs-up fa-4x"></i>
<h3>Stupidly Simple</h3>
<p>Pico makes creating and maintaining a website <br> as simple as editing text files.</p>
</div>
<div class="item">
<i class="fa fa-tachometer fa-4x"></i>
<h3>Blazing Fast</h3>
<p>Pico is seriously lightweight and doesn't use a <br> database, making it super fast.</p>
</div>
<div class="item">
<i class="fa fa-database fa-4x"></i>
<h3>No Database</h3>
<p>Pico is a "flat file" CMS, meaning no database woe's. <br> no MySQL queries, nothing.</p>
</div>
<div class="item">
<i class="fa fa-font fa-4x"></i>
<h3>Markdown Formatting</h3>
<p>Edit your website in your favorite text editor using <br> simple Markdown formatting</p>
</div>
<div class="item">
<i class="fa fa-paint-brush fa-4x"></i>
<h3>Twig Templates</h3>
<p>Pico uses the <span>Twig</span> templating engine, for powerful <br> and flexible themes</p>
</div>
<div class="item">
<i class="fa fa-code-fork fa-4x"></i>
<h3>Open Source</h3>
<p>Pico is completely free and open source, released <br> under the MIT license</p>
</div>
</div>
<!-- Footer -->
<div class="footer">
<h4>Want to Contribute?</h4>
<p>Help make Pico better by checking out the <a href="#">GitHub repository</a> and submitting pull requests.</p>
<p>If you find a bug please report it on the <a href="#">issues page</a>.</p>
<div id="socialIcons">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
</div>
</div>
</body>
</html>