-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (82 loc) · 2.74 KB
/
Copy pathindex.html
File metadata and controls
88 lines (82 loc) · 2.74 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
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Codify Academy">
<meta name="description" content="An intermediate simple site replication made by Codify Academy">
<title>Intermediate Site Replication</title>
<!-- favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- goggle fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<!-- fontawesome cdn -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- main author styles -->
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<nav class="navigation">
<div class="logo">
PICO
</div>
<ul>
<li class="active">
<a href="">Home</a>
</li>
<li>
<a href="">Docs</a>
</li>
<li>
<a href="">Download</a>
</li>
</ul>
</nav>
<header class="header">
<h1>Introducing <span>Pico.</span></h1>
<h2>A stupidly simple <span>&</span> blazing fast, flat file CMS.</h2>
<h2>Making the web easy.</h2>
<a href="#">download now</a>
</header>
<section class="features">
<div class="item">
<i class="fa fa-thumbs-up fa-4x"></i>
<h4>Stupidly Simple</h4>
<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>
<h4>Blazing Fast</h4>
<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>
<h4>No Database</h4>
<p>Pice 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>
<h4>Markdown Formatting</h4>
<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>
<h4>Twig Templates</h4>
<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>
<h4>Open Source</h4>
<p>Pico is completely free and open source, released <br> under the MIT license</p>
</div>
</section>
<footer class="footer">
<h3>Want to Contribute?</h3>
<p>Help make Pico better by checking out the <a href="">GitHub repository</a> and submitting pull requests.
<p>If you find a bug please report it on the <a href="">issues page</a>.
<div id="socialIcons">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
</div>
</footer>
</body>
</html>