{% extends 'layout.html' %} {% block pageTitle %} How to make pages - HS2 prototype kit {% endblock %} {% block beforeContent %} {% include "how-tos/includes/breadcrumb.html" %} {% endblock %} {% block content %}
Use your HTML text editor to make pages.
Create all your HTML pages in the /app/views folder.
All pages need the .html extension.
Pages within /app/views will be automatically available in your web browser.
For example, if you create a page called contact.html and then go to localhost:3000/contact in your browser, you will see that page.
The kit allows you add pages into folders.
For example, you can make the page views/components/header.html, and then view the page by going to localhost:3000/components/header.
Copy and paste page templates into your project.
{% include "how-tos/includes/back-button.html" %}