forked from tighten/jigsaw-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
210 lines (203 loc) · 9.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jigsaw – Static Sites for Laravel Developers</title>
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#309e74">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="/css/main.css">
<link href='https://fonts.googleapis.com/css?family=Lato:100,300,300italic,400,400italic,500,500italic,700,700italic' rel='stylesheet' type='text/css'>
</head>
<body class="border-t-3 border-primary full-height flex-col">
<div class="flex-fit">
<header class="bg-hero p-xs-b-4">
<nav class="navbar navbar-brand">
<div class="container">
<div class="navbar-content">
<div>
<a class="link-plain text-xxl flex-y-center" href="/">
<img class="logo" src="/img/jigsaw-logo-440.png" width="220">
</a>
</div>
<div class="navbar-buttons">
<a href="https://github.com/tightenco/jigsaw" class="link-brand m-xs-r-6">
Contribute
</a>
<a href="/docs/installation/" class="btn btn-primary-outline">
Docs
</a>
</div>
</div>
</div>
</nav>
<div class="container text-center">
<div class="constrain constrain-lg">
<div class="m-xs-y-8">
<h1 class="text-xjumbo m-xs-b-4">
Static sites for Laravel developers
</h1>
<h2 class="text-lg">
Jigsaw is a framework for rapidly building static sites using the same modern tooling that powers your web applications.
</h2>
</div>
<div class="constrain m-xs-b-n6">
<div class="code-editor">
<div class="code-editor-top">
<span class="code-editor-button code-editor-close"></span>
<span class="code-editor-button code-editor-min"></span>
<span class="code-editor-button code-editor-max"></span>
</div>
<div class="code-editor-body">
<pre>
<code><span class="code-muted">$</span> <span class="code-grey">composer global require </span><span class="code-green">tightenco/jigsaw</span>
</code></pre>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="p-xs-y-8 border-t border-b bg-soft">
<div class="container">
<h3 class="constrain text-xl text-center m-xs-b-6">
Blade templating, just like<br class="visible-xs-inline"> your Laravel apps.
</h3>
<div class="row">
<div class="col-md-6">
<div class="p-xs-b-6 p-md-y-6 p-lg-x-8">
<p class="m-xs-b-4">
Blade is a powerful, simple, and beautiful templating language, but until now it wasn't an option if you were building a simple static site that didn't need a complex PHP backend.
</p>
<p>
Jigsaw brings Blade to the static site world, so you can use the same templating engine for simple websites as you do for complex web applications.
</p>
</div>
</div>
<div class="col-md-6">
<div class="code-editor">
<div class="code-editor-top">
<span class="code-editor-button code-editor-close"></span>
<span class="code-editor-button code-editor-min"></span>
<span class="code-editor-button code-editor-max"></span>
</div>
<div class="code-editor-body">
<pre><code><span class="code-purple">@extends</span>('<span class="code-green">_layouts.master</span>')
<span class="code-purple">@section</span>('<span class="code-green">body</span>')
<span class="code-teal"><</span><span class="code-red">h1</span><span class="code-teal">></span>Hello World!<span class="code-teal"></</span><span class="code-red">h1</span><span class="code-teal">></span>
<span class="code-purple">@endsection</span></code></pre>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="p-xs-y-8 border-b bg-light">
<div class="container">
<h3 class="constrain text-xl text-center m-xs-b-6">
Use Markdown for<br class="visible-xs-inline"> content-driven pages.
</h3>
<div class="row">
<div class="col-md-6 col-md-push-6">
<div class="p-xs-b-6 p-md-y-6 p-lg-x-8">
<p class="m-xs-b-4">
Markdown is a fantastic writing format for things like articles, blog posts, or documentation pages.
</p>
<p class="m-xs-b-4">
Jigsaw makes it painless to create a layout in Blade, and fill it with content written in Markdown.
</p>
<p>
<a href="/docs/markdown/" class="link-brand">
Learn more in the docs.
</a>
</p>
</div>
</div>
<div class="col-md-6 col-md-pull-6">
<div class="code-editor">
<div class="code-editor-top">
<span class="code-editor-button code-editor-close"></span>
<span class="code-editor-button code-editor-min"></span>
<span class="code-editor-button code-editor-max"></span>
</div>
<div class="code-editor-body">
<pre><code><span class="code-muted">---</span>
<span class="code-red">extends:</span> <span class="code-green">_layouts.post</span>
<span class="code-red">section:</span> <span class="code-green">content</span>
<span class="code-muted">---</span>
<span class="code-blue"># Hello World!</span>
Welcome to the future.</code></pre>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="p-xs-y-8 border-b bg-soft">
<div class="container">
<h3 class="constrain text-xl text-center m-xs-b-6">
Compile your assets using Laravel Elixir.
</h3>
<div class="row">
<div class="col-md-6">
<div class="p-xs-b-6 p-md-y-6 p-lg-x-8">
<p class="m-xs-b-4">
Jigsaw bakes in support for Laravel Mix so you can compile your CSS and Javascript assets the same way you're used to in Laravel.
</p>
<p>
We also preconfigure Mix to watch your Blade files so your site is rebuilt automatically when you make a change. Combined with out-of-the-box Browsersync support, previewing your changes quickly couldn't be easier.
</p>
</div>
</div>
<div class="col-md-6">
<img src="/img/mix-preprocessors.png" alt="Laravel Mix Preprocessors" class="img-fit">
</div>
</div>
</div>
</section>
<section class="p-xs-y-8 border-b bg-light">
<div class="container text-center">
<h3 class="text-xl m-xs-b-6">
Ready to get started?
</h3>
<p class="constrain constrain-sm m-xs-b-6">
Check out our installation instructions and you'll be up and running in no time.
</p>
<div>
<a href="/docs/installation/" class="btn btn-lg btn-primary">
Build your site
</a>
</div>
</div>
</section>
</div>
<footer class="bg-dark text-center p-xs-y-6 p-xs-x-4 text-light-muted text-sm">
<p>© {{ date('Y') }} <a href="http://tighten.co" class="link-light-muted">Tighten</a></p>
</footer>
<script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script>
<script type="text/javascript">
docsearch({
apiKey: '57a7f5b1e4e0a44c7e2f8e96abcbf674',
indexName: 'jigsaw',
inputSelector: '#docsearch'
});
</script>
</body>
</html>