bulma/docs/_includes/steps/create-html-page.html

39 lines
969 B
HTML
Raw Normal View History

2018-07-14 13:18:43 +00:00
{% capture step_4 %}
<div class="content">
<p>
Create an HTML template which uses several Bulma components.
</p>
</div>
{% highlight html %}{% include snippets/mypage.html %}{% endhighlight %}
<div class="content">
<p>
2018-07-14 17:38:27 +00:00
Save this file as <code>mypage.html</code>{% if include.dist == true %} in the <code>dist</code> folder{% endif %}.
2018-07-14 13:18:43 +00:00
</p>
<p>
Notice the <code>css/mystyles.css</code> path for your stylesheet. This will be the location of the CSS file we will generate with Sass.
</p>
<p>
Open the page in your browser:
</p>
</div>
{%
include components/figure.html
path="customize/custom-bulma-01-unstyled"
extension="png"
alt="Bulma unstyled"
width="600"
height="300"
caption="The unstyled page"
%}
{% endcapture %}
{% assign step_title = ". Create an HTML page" | prepend: include.number %}
{% include components/step.html
title=step_title
content=step_4
%}