Reader small image

You're reading from  Bootstrap Site Blueprints Volume II

Product typeBook
Published inJan 2016
Reading LevelIntermediate
PublisherPackt
ISBN-139781785281099
Edition1st Edition
Languages
Right arrow
Author (1)
Matt Lambert
Matt Lambert
author image
Matt Lambert

Matt Lambert is a designer and developer with 15+ years of experience. He currently works full-time as a Senior Software Engineer for CA Technologies in Vancouver, BC, Canada. In his free time he is an author, artist, and musician. In 2005, Matt founded Cardeo Creative, which is a small web design studio based in Vancouver. He works with a select list of clients on a part-time basis while producing his own products on the side. To date, Matt has self-published 3 additional development books titled: Mastering Bootstrap, CSS3 Handbook, and the Freelance Startup Guide.
Read more about Matt Lambert

Right arrow

Customizing the template


Let's start the last blueprint by copying our boilerplate project and creating a new one called Chapter 7. Open the _data.json file and insert the following code:

{
  "index": {
    "pageTitle": "Home"
  },
  "activity-feed": {
    "pageTitle": "Activity Feed"
  },
  "notifications": {
    "pageTitle": "Notifications"
  },
  "messages": {
    "pageTitle": "Messages"
  },
  "friends": {
    "pageTitle": "Friends"
  }
}

For this project, we are going to create five page templates. Let's start by creating the files in the root of our project. For now, they can just be blank, and we'll start to fill them in a little later:

  • index.ejs

  • activity-feed.ejs

  • notifications.ejs

  • messages.ejs

  • friends.ejs

Updating _layout.ejs

Next, let's update the _layout.ejs file in the root of our new project. The layout for the profile page doesn't have any major differences. Make sure you include the line of code that will import Roboto as your web font:

<link href='https://fonts.googleapis...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Bootstrap Site Blueprints Volume II
Published in: Jan 2016Publisher: PacktISBN-13: 9781785281099

Author (1)

author image
Matt Lambert

Matt Lambert is a designer and developer with 15+ years of experience. He currently works full-time as a Senior Software Engineer for CA Technologies in Vancouver, BC, Canada. In his free time he is an author, artist, and musician. In 2005, Matt founded Cardeo Creative, which is a small web design studio based in Vancouver. He works with a select list of clients on a part-time basis while producing his own products on the side. To date, Matt has self-published 3 additional development books titled: Mastering Bootstrap, CSS3 Handbook, and the Freelance Startup Guide.
Read more about Matt Lambert