Skip to content
Snippets Groups Projects
Select Git revision
  • 2194b555a0a3c8b772b7d5fa838a6686c35e944b
  • development default protected
  • 26-link-booking-page-to-server-and-database
  • As-a-user-I-want-to-view-information-of-all-locations-available
  • 26-link-booking-page-to-server-and-database-2
  • 26-link-booking-page-to-server-and-database-3
  • 26-link-booking-page-to-server-and-database-4
  • 28-fixing-bugs-and-issues
  • 2-as-a-user-i-want-to-be-authorized-if-i-am-a-member
  • 25-adding-a-basic-locations-template-route
  • 14-as-a-user-i-want-to-view-a-list-of-all-locations-available
  • 23-as-a-user-i-want-to-view-information-of-all-locations-available
  • page-for-all-workingSpaces
  • 24-hotfix-development-directory
  • 13-as-a-moderator-i-want-to-be-able-to-amend-and-remove-existing-locations-spaces-features
  • 7-as-a-user-i-want-to-see-all-of-the-working-spaces-available
  • 22-hotfix-templating-directory
  • 15-as-a-user-i-want-to-find-out-what-tramshed-is-so-that-i-can-access-their-working-spaces
  • 3-as-a-moderator-i-want-to-be-able-to-add-new-locations-spaces-features
  • 7-as-a-user-i-want-to-see-all-of-the-working-spaces-available-2
  • 16-as-a-user-i-want-to-be-able-to-find-information-about-tramshed-on-a-webpage-2
21 results

base_template.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    base_template.html 1.54 KiB
    <!DOCTYPE html>
    <html lang="EN" dir="ltr">
      <head>
        <meta charSet="UTF-8">
        {%block headblock%}
        {%endblock%}
      </head>
      <body onLoad="pageLoad()">
    
        <header id="pageHeader" class="pageHeader">
          <div id="headerDiv">
            <a href="Manage_Coworking_Spaces.html">
              <img id="headerImg" class="headerImg"
              src="/static/Media/Tramshed-Logo-Main-Black.png"></img></a>
            {%block headerblock%}
            {%endblock%}
          </div>
          <nav id="headerNav" class="navBar">
            <ul class="Left">
              <li><a href="Manage_Coworking_Spaces">Home</a></li>
              <li><a href="Locations">Locations</a></li>
            </ul>
            <ul class="Right">
              <li><a href="Manage_Coworking_Spaces">Manage</a></li>
              <li><a href="Manage_Coworking_Spaces">Login</a></li>
              <li><div class="navHamburger">
                  <span></span>
                  <span></span>
                  <span></span>
              </div></li>
            </ul>
          </nav>
        </header>
    
        <main id="pageMain">
          {%block mainblock%}
          {%endblock%}
        </main>
    
        <footer id="pageFooter">
          <nav id="footerNav" class="navBar">
            <ul class="Center">
              <li><a href="Manage_Coworking_Spaces">Left</a></li>
            </ul>
            <ul class="Center">
              <li><a href="Manage_Coworking_Spaces">Center</a></li>
            </ul>
            <ul class="Center">
              <li><a href="Manage_Coworking_Spaces">Right</a></li>
            </ul>
          </nav>
        </footer>
    
        <script src="{%block jsblock%}{%endblock%}"></script>
      </body>
    </html>