Book Image

SignalR Blueprints

By : Einar Ingerbrigsten
Book Image

SignalR Blueprints

By: Einar Ingerbrigsten

Overview of this book

Table of Contents (18 chapters)
SignalR Blueprints
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
9
Debugging or Troubleshooting
Index

Composing


The first thing we want to look at is setting up the composition. Then, we look at the different parts of the page and what should be put into it.

Structure

At the core of the page master, we have a certain structure. We want a header, footer, and main part of the page that holds all the features we will navigate to.

Let's create a new folder called Structure in the root of the project. In this folder, we want to add an HTML file called Header.html. Put the following code inside the body tag and it will produce a navigation bar:

<div class="row">
    <div class="col-lg-12">
        <div class="page-header">
            <h1>Human Resources</h1>
        </div>

        <div class="navbar navbar-default">
            <div class="navbar-header">
                <a class="navbar-brand" href="#">Brand</a>
            </div>

            <ul class="nav navbar-nav">
                <li class="active"><a href=...