forked from nickberens360/atomic-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
69 lines (49 loc) · 1.5 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<?php include("atomic-head.php"); ?>
<style>
html, body {
height: 100%;
}
.indexBlock {
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 900px;;
margin: auto;
}
img {
max-width: 100%;
}
.shadow{
box-shadow: 0px 0px 32px 4px rgba(0, 0, 0, 0.25);
}
p {
font-family: sans-serif;
}
a {
color: #4BC6EF;
font-weight:bold;
}
.logo{
display: inline-block;
margin-bottom: 61px;
}
</style>
</head>
<body>
<div class="indexBlock">
<img class="logo" src="http://atomicdocs.io/img/atomic-logo.svg">
<p>By default, Atomic Docs is set up for Sass. If you are using Less or Sass check out this <a href="http://atomicdocs.io/docs/less-stylus">post</a>.</p>
<p>Set up in your php local environment and configure your preprocessor and start
<a href="atomic-core/modules.php">here</a>.</p>
<p>This GIF pretty much explains what to do after that. Otherwise you can checkout
this <a href="https://www.youtube.com/watch?v=e8LjP6ynryQ" target="_blank">video</a>.</p><br/>
<img class="shadow" src="http://atomicdocs.io/img/demo1.gif"/>
</div>
</body>
<?php include("atomic-foot.php"); ?>
</html>