-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
266 lines (246 loc) · 9.83 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Spress › The static site generator in PHP</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Spress is a blog-aware application that transform your plain text files in static sites.">
<meta name="author" content="Victor Puertas">
<meta name="generator" content="Spress v3.0.0">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://spress.yosymfony.com/assets/img/spress-logo.png">
<meta name="twitter:title" content="The static site generator in PHP">
<meta name="twitter:description" content="Spress is a blog-aware application that transform your plain text files in static sites.">
<meta name="twitter:creator" content="@spress_cms">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="og:title" content="The static site generator in PHP">
<meta property="og:description" content="Spress is a blog-aware application that transform your plain text files in static sites.">
<meta property="og:url" content="https://spress.yosymfony.com/">
<meta property="og:site_name" content="The static site generator in PHP">
<link href="https://spress.yosymfony.com/rss.xml" type="application/rss+xml" rel="alternate" title="The static site generator in PHP Feed">
<link rel="icon" type="image/x-icon" href="https://spress.yosymfony.com/favicon.ico">
<link rel="apple-touch-icon" href="https://spress.yosymfony.com/assets/img/touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://spress.yosymfony.com/assets/img/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://spress.yosymfony.com/assets/img/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://spress.yosymfony.com/assets/img/touch-icon-ipad-retina.png">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<link href="https://spress.yosymfony.com/assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="https://spress.yosymfony.com/assets/css/theme.css" rel="stylesheet" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-47797401-1', 'yosymfony.com');
ga('send', 'pageview');
</script> </head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://spress.yosymfony.com/">Spress</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://spress.yosymfony.com/">
Home
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/download">
Download
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/docs/getting-started/">
Get started
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/docs">
Docs
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/add-ons">
Add-ons
<i class="fa fa-cogs"></i>
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/blog">
Blog
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/about">
About
</a>
</li>
</ul>
</div>
</div>
</div>
<header class="spressin">
<!-- Spressin -->
<div class="vert-text spressin-layer">
<h1>Spress</h1>
<p><span class="lead">The static site generator in PHP</span></p>
<p>
<a href="/download" class="btn btn-primary btn-lg" role="button">
Download 3.0.0 <i class="fa fa-download"></i>
</a>
</p>
<span class="spressin-author pull-right">
<i class="fa fa-camera"></i> by
<a href="https://flic.kr/p/cuhEVE" target="blank">
Zach Frailey
</a>
</span>
</div>
<!-- /Spressin -->
</header>
<section>
<!-- Pre-release-message -->
<!-- /Pre-release-message -->
<!-- Short description -->
<div>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<h2>Spress is a static site generator which allows you to write and publish your web sites</h2>
<p class="lead">
Spress allows you to create and deploy blogs, personal websites, simple
corporate websites with information about your products and even landing
pages for your services.
</p>
</div>
</div>
</div>
</div>
<!-- /Short description -->
<!-- Approach -->
<div class="approach">
<div class="container">
<div class="row">
<div class="col-md-3 text-center">
<i class="fa fa-puzzle-piece fa-2x"></i>
<h3>Customize it completely</h3>
<p>
You can write themes and plugins to make it more awesome.
</p>
</div>
<div class="col-md-3 text-center">
<i class="fa fa-bolt fa-2x"></i>
<h3>Powerful templates</h3>
<p>
Create amazing templates powered by
<a title="PHP template engine" href="http://twig.sensiolabs.org/">Twig</a>
template engine.
</p>
</div>
<div class="col-md-3 text-center">
<i class="fa fa-list-alt fa-2x"></i>
<h3>Simple writing</h3>
<p>
You can create your blog or web site with your favorite text
editor in <a title="Markdown syntax" href="http://en.wikipedia.org/wiki/Markdown">Markdown</a>.
</p>
</div>
<div class="col-md-3 text-center">
<i class="fa fa-hdd-o fa-2x"></i>
<h3>No backend</h3>
<p>
Spress is a CMS powered by flat files, meaning that no database is required.
You only need a simple web server!.
</p>
</div>
</div>
</div>
</div>
<!-- /Approach -->
<!-- Join Us -->
<div class="join-us">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<h2>Spress is open source <i class="fa fa-github fa-2x"></i></h2>
<p class="lead">
Spress is completely free and open source,
released under the <a href="/about/license">MIT license</a>.
</p>
<a href="https://github.com/spress/Spress/" class="btn btn-primary btn-lg btn-danger" role="button">
Get source <i class="fa fa-code-fork"></i>
</a>
</div>
</div>
</div>
</div>
<!-- /Join Us -->
</section>
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="list-inline">
<li>
<a href="https://gitter.im/spress/Spress">
Support
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/about/license">
License: MIT
</a>
</li>
<li>
<a href="https://spress.yosymfony.com/about">
About
</a>
</li>
<li>
<a href="http://yosymfony.com">
Yo! Symfony
</a>
</li>
</ul>
</div>
<div class="col-md-6 text-right">
<ul class="list-inline">
<li>
<a href="https://twitter.com/spress_cms">
<i class="fa fa-twitter fa-2x"></i>
</a>
</li>
<li>
<a href="https://github.com/spress">
<i class="fa fa-github fa-2x"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/user/yosymfony">
<i class="fa fa-youtube fa-2x"></i>
</a>
</li>
</ul>
</div>
</div>
<p class="text-center">
© 2020 <a href="http://yosymfony.com">Yo! Symfony</a>.
<span class="label label-default">Proudly powered by Spress</span>
</p>
</div>
</footer>
</body>
</html>