templates/quickguide_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>The Outbreak Quick Guide</title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6.     <meta name="description" content="The Outbreak Quick Guide - The Outbreak is a free online strategy game in a post apocolypitic world. Can you keep your people save from disaster?">
  7.     <meta name="keywords" content="free, game, games, Guide, FAQ, question, Resources, gameplay, auctions, outbreak, strategy, survival">
  8.     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  9.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10.     <meta name="robots" content="index, follow">
  11.     <meta name="revisit-after" content="1 month">
  12.     <meta name="Reply-to" content="info@the-outbreak.com">
  13.     <meta name="Identifier-URL" content="https://www.the-outbreak.com/">
  14.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  15.     <link rel="canonical" href="https://www.the-outbreak.com/" />
  16.     <meta property='og:locale' content='en_us'/>
  17.     <meta property="og:type" content="website" />
  18.     <meta property="og:title" content="Quickguide | The Outbreak" />
  19.     <meta property="og:description" content="The Outbreak Quick Guide - The Outbreak is a free online strategy game in a post apocolypitic world. Can you keep your people save from disaster?" />
  20.     <meta property="og:url" content="https://www.the-outbreak.com/" />
  21.     <meta property="og:site_name" content="The Outbreak web game | Online game, Free game" />
  22.     <meta name="viewport" content="width=device-width, initial-scale=1">
  23.     <link rel="shortcut icon" href="{{ asset('assets/layout/favicon.ico') }}" type="image/x-icon" />
  24.     <link rel="stylesheet" href="{{ asset('assets/quickguide/quickguide.css') }}" />
  25. </head>
  26. <body>
  27. <div id="container">
  28.     <nav id="primary_nav_wrap">
  29.         <ul>
  30.             <li class="current-menu-item">
  31.             <li><a href="#">Jump to section:</a>
  32.                 <ul>
  33.                     <li><a href="{{ path('quickguide') }}">Resources</a></li>
  34.                     <li><a href="{{ path('quickguide_army') }}">Army</a></li>
  35.                     <li><a href="{{ path('quickguide_specop') }}">Special Ops</a></li>
  36.                     <li><a href="{{ path('quickguide_tech') }}">Tech Tree</a></li>
  37.                     <li><a href="{{ path('guide_index') }}">Back to guide</a></li>
  38.                 </ul>
  39.             </li>
  40.         </ul>
  41.     </nav>
  42.     <img src="{{ asset('assets/quickguide/guideicon.png') }}" />
  43.     <div class="line-separator"></div>
  44.     {% block content %}{% endblock %}
  45. </div> <!--end containter-->
  46. </body>
  47. </html>