create-html-page.html 897 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% capture step_4 %}
  2. <div class="content">
  3. <p>
  4. Create an HTML template which uses several Bulma components.
  5. </p>
  6. </div>
  7. {% highlight html %}{% include snippets/mypage.html %}{% endhighlight %}
  8. <div class="content">
  9. <p>
  10. Save this file as <code>mypage.html</code>.
  11. </p>
  12. <p>
  13. 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.
  14. </p>
  15. <p>
  16. Open the page in your browser:
  17. </p>
  18. </div>
  19. {%
  20. include components/figure.html
  21. path="customize/custom-bulma-01-unstyled"
  22. extension="png"
  23. alt="Bulma unstyled"
  24. width="600"
  25. height="300"
  26. caption="The unstyled page"
  27. %}
  28. {% endcapture %}
  29. {% assign step_title = ". Create an HTML page" | prepend: include.number %}
  30. {% include components/step.html
  31. title=step_title
  32. content=step_4
  33. %}