Skip to content

Commit f3f3e67

Browse files
committed
Update bulma-start
1 parent 4640f9d commit f3f3e67

File tree

1 file changed

+110
-29
lines changed

1 file changed

+110
-29
lines changed

docs/bulma-start.html

Lines changed: 110 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,51 @@
11
---
2-
title: "Bulma start"
3-
fulltitle: "Bulma start: a tiny npm package to get started with Bulma"
2+
title: 'Bulma start'
3+
fulltitle: 'Bulma start: a tiny npm package to get started with Bulma'
44
layout: more
55
route: bulma-start
6-
version: 0.0.3
7-
download_url: https://github.com/jgthms/bulma-start/releases/download/0.0.3/bulma-start-0.0.3.zip
6+
version: 0.0.4
7+
download_url: https://github.com/jgthms/bulma-start/releases/download/0.0.4/bulma-start-0.0.4.zip
88
github_url: https://github.com/jgthms/bulma-start
99
npm_url: https://www.npmjs.com/package/bulma-start
1010
breadcrumb:
11-
- home
12-
- more
13-
- bulma-start
11+
- home
12+
- more
13+
- bulma-start
1414
---
1515

1616
<div class="columns">
1717
<div class="column is-5-widescreen">
1818
<p class="title is-4">
19-
<code><a target="_blank" href="{{ page.npm_url }}">bulma-start</a></code> is a tiny npm package that includes the <code>npm</code> <strong>dependencies</strong> you need to <strong>build your own website</strong> with Bulma.
19+
<code><a target="_blank" href="{{ page.npm_url }}">bulma-start</a></code>
20+
is a tiny npm package that includes the <code>npm</code>
21+
<strong>dependencies</strong> you need to
22+
<strong>build your own website</strong> with Bulma.
2023
</p>
2124

2225
<div class="buttons">
23-
<a class="button is-medium is-success" target="_blank" href="{{ page.download_url }}">
26+
<a
27+
class="button is-medium is-success"
28+
target="_blank"
29+
href="{{ page.download_url }}"
30+
>
2431
<span><strong>Download v{{ page.version }}</strong></span>
2532
</a>
2633
</div>
2734

2835
<div class="buttons">
29-
<a class="button is-small is-outlined is-dark" target="_blank" href="{{ page.github_url }}">
36+
<a
37+
class="button is-small is-outlined is-dark"
38+
target="_blank"
39+
href="{{ page.github_url }}"
40+
>
3041
<span><strong>GitHub</strong> page</span>
3142
</a>
3243

33-
<a class="button is-small is-outlined is-danger" target="_blank" href="{{ page.npm_url }}">
44+
<a
45+
class="button is-small is-outlined is-danger"
46+
target="_blank"
47+
href="{{ page.npm_url }}"
48+
>
3449
<span><strong>npm</strong> page</span>
3550
</a>
3651
</div>
@@ -39,7 +54,13 @@
3954
<div class="column is-narrow">
4055
<p>
4156
<a href="{{ page.npm_url }}">
42-
<img src="{{ site.url }}/images/bulma-start.png" alt="Bulma: a Flexbox CSS framework" style="max-width:100%;" width="438" height="200">
57+
<img
58+
src="{{ site.url }}/images/bulma-start.png"
59+
alt="Bulma: a Flexbox CSS framework"
60+
style="max-width: 100%;"
61+
width="438"
62+
height="200"
63+
/>
4364
</a>
4465
</p>
4566
</div>
@@ -49,37 +70,97 @@
4970

5071
<div class="content">
5172
<p>
52-
<a href="{{ page.download_url }}" rel="nofollow noopener"><strong>Download bulma-start {{ page.version }} (.zip)</strong></a>, rename to your project's name (i.e. <code>my-new-bulma-site</code>) and:
73+
<a href="{{ page.download_url }}" rel="nofollow noopener"
74+
><strong>Download bulma-start {{ page.version }} (.zip)</strong></a
75+
>, rename to your project's name (i.e. <code>my-new-bulma-site</code>) and:
5376
</p>
5477
</div>
5578

56-
{% highlight bash %}
57-
cd my-new-bulma-site
58-
npm install
59-
npm start
60-
{% endhighlight %}
61-
62-
For more, visit <a href="https://github.com/jgthms/bulma-start#get-your-feet-wet">bulma-start README on Github.</a>
79+
{% highlight bash %} cd my-new-bulma-site npm install npm start {% endhighlight
80+
%} For more, visit
81+
<a href="https://github.com/jgthms/bulma-start#get-your-feet-wet"
82+
>bulma-start README on Github.</a
83+
>
6384

6485
{% include elements/anchor.html name="What’s included" %}
6586

6687
<div class="content">
67-
<p>The <code>npm</code> dependencies included in <code>package.json</code> are:</p>
88+
<p>
89+
The <code>npm</code> dependencies included in <code>package.json</code> are:
90+
</p>
6891

6992
<ul>
70-
<li><code><a href="https://github.com/jgthms/bulma" target="_blank">bulma</a></code></li>
71-
<li><code><a href="https://github.com/sass/node-sass" target="_blank">node-sass</a></code> to compile your own Sass file</li>
72-
<li><code><a href="https://github.com/postcss/postcss-cli" target="_blank">postcss-cli</a></code> and <code><a href="https://github.com/postcss/autoprefixer" target="_blank">autoprefixer</a></code> to add support for older browsers</li>
73-
<li><code><a href="https://babeljs.io/docs/usage/cli/" target="_blank">babel-cli</a></code>, <code><a href="https://github.com/babel/babel-preset-env" target="_blank">babel-preset-env</a></code> and <code><a href="https://github.com/jmcriffey/babel-preset-es2015-ie">babel-preset-es2015-ie</a></code> for compiling ES6 JavaScript files</li>
93+
<li>
94+
<code
95+
><a href="https://github.com/jgthms/bulma" target="_blank"
96+
>bulma</a
97+
></code
98+
>
99+
</li>
100+
<li>
101+
<code
102+
><a href="https://github.com/sass/node-sass" target="_blank"
103+
>node-sass</a
104+
></code
105+
>
106+
to compile your own Sass file
107+
</li>
108+
<li>
109+
<code
110+
><a href="https://github.com/postcss/postcss-cli" target="_blank"
111+
>postcss-cli</a
112+
></code
113+
>
114+
and
115+
<code
116+
><a href="https://github.com/postcss/autoprefixer" target="_blank"
117+
>autoprefixer</a
118+
></code
119+
>
120+
to add support for older browsers
121+
</li>
122+
<li>
123+
<code
124+
><a href="https://babeljs.io/docs/usage/cli/" target="_blank"
125+
>babel-cli</a
126+
></code
127+
>,
128+
<code
129+
><a href="https://github.com/babel/babel-preset-env" target="_blank"
130+
>babel-preset-env</a
131+
></code
132+
>
133+
and
134+
<code
135+
><a href="https://github.com/jmcriffey/babel-preset-es2015-ie"
136+
>babel-preset-es2015-ie</a
137+
></code
138+
>
139+
for compiling ES6 JavaScript files
140+
</li>
74141
</ul>
75142

76143
<p>Apart from <code>package.json</code>, the following files are included:</p>
77144

78145
<ul>
79-
<li><code>.babelrc</code> configuration file for <a href="https://babeljs.io/">Babel</a></li>
80-
<li><code>.gitignore</code> common <a href="https://git-scm.com/">Git</a> ignored files</li>
146+
<li>
147+
<code>.babelrc</code> configuration file for
148+
<a href="https://babeljs.io/">Babel</a>
149+
</li>
150+
<li>
151+
<code>.gitignore</code> common
152+
<a href="https://git-scm.com/">Git</a> ignored files
153+
</li>
81154
<li><code>index.html</code> this HTML5 file</li>
82-
<li><code>_sass/main.scss</code> a basic SCSS file that <strong>imports Bulma</strong> and explains how to <strong>customize</strong> your styles, and compiles to <code>css/main.css</code></li>
83-
<li><code>_javascript/main.js</code> an ES6 JavaScript that compiles to <code>lib/main.js</code></li>
155+
<li>
156+
<code>_sass/main.scss</code> a basic SCSS file that
157+
<strong>imports Bulma</strong> and explains how to
158+
<strong>customize</strong> your styles, and compiles to
159+
<code>css/main.css</code>
160+
</li>
161+
<li>
162+
<code>_javascript/main.js</code> an ES6 JavaScript that compiles to
163+
<code>lib/main.js</code>
164+
</li>
84165
</ul>
85166
</div>

0 commit comments

Comments
 (0)