Let's test and use our framework
To check how our framework is working and how easy it is to append all of our stuff, let's create a blog template. In this template, let's include views:
List of posts
Single post
Single page
Let's create regions:
Header
Footer
Content
Here's our simplified design:
Let's begin with the simple structure of a blog page (the Home page):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="css/master.css" media="screen" title="no title" charset="utf-8"> </head> <body> <header> <h1>FEDojo.com</h1> <h2>Front End Developers Blog</h2> </header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <main> <article class...