index.html
3.93 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Welcome to your Strapi app</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
* {
-webkit-box-sizing: border-box;
}
body, html {
margin: 0;
padding: 40px 0;
}
body {
font: 17px/1.5 "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
background: white;
margin: 0;
color: #33333d;
overflow-y: scroll;
overflow-x: hidden;
}
h1 {
font-size: 1.6em;
margin-top: 0;
}
h2 {
margin-top: 44px;
font-size: 1.3em;
}
h3 {
margin-top: 30px;
font-size: 1em;
}
section {
margin: 0 5.555555555555555%;
}
p {
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}
a {
color: #33a0c0;
}
code {
font-family: monospace;
font-size: 1.1em;
}
pre {
background: white;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
padding: 25px;
font-family: monospace;
overflow-x: auto;
}
.wrapper {
padding: 0 .75em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
@media screen and (min-width:40em) {
body {
font-size: 1.0625em;
}
}
@media screen and (min-width:45em) {
body {
font-size: 1em;
}
}
@media screen and (min-width:55.5em) {
body {
font-size: 1.0625em;
}
}
@media screen and (min-width:61.5em) {
body {
font-size: 1em;
}
section {
margin: 0 16.666666666666664%;
}
}
@media screen and (min-width:75em) {
body {
font-size: 1.0625em;
}
}
@media screen and (min-width:87em) {
body {
font-size: 1em;
}
section {
margin: 0 27.77777777777778%;
}
}
@media screen and (min-width:105em) {
body {
font-size: 1.0625em;
}
}
@media screen and (min-width:117em) {
section {
margin: 0 5.555555555555555%;
}
section .wrapper {
width: 37.5%;
margin-left: 25%;
}
}
@media screen and (min-width:130em) {
body {
font-size: 1.125em;
max-width: 160em;
}
}
</style>
</head>
<body lang="en">
<section>
<div class="wrapper">
<h1>Welcome.</h1>
<p>You successfully created your Strapi application.</p>
<p>You are looking at: <code>./public/index.html</code>.</p>
<p>Your built-in admin panel is available at <a href="/admin" target="blank">/admin</a>.
<h2>Create your first API</h2>
<p>Easily generate a complete API with controllers, models and routes using:</p>
<pre><code class="lang-bash">$ strapi generate:api <apiName></code></pre>
<h2>Resources</h2>
<p>You'll probably also want to learn how to customize your application, set up security and configure your data sources.</p>
<p>For more help getting started, check out:
<ul>
<li><a href="http://strapi.io/documentation/introduction" target="blank">Documentation</a></li>
<li><a href="https://github.com/strapi/strapi" target="blank">Repository on GitHub</a></li>
<li><a href="https://twitter.com/strapijs" target="blank">news on Twitter</a></li>
<li><a href="http://slack.strapi.io" target="blank">Real-time support on Slack</a></li>
</ul>
</p>
</div>
</section>
</body>
</html>