Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hdcdstr8fwd/foundation-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/404.html')
-rw-r--r--layouts/404.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..3da8c4a
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,63 @@
+<!doctype html>
+<html class="no-js" lang="en" dir="ltr">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title> {{ .Site.Title }} </title>
+ <link rel="stylesheet" href="{{ .Site.BaseURL }}css/foundation.css" type="text/css" media="screen">
+ <link rel="stylesheet" href="{{ .Site.BaseURL }}css/styles.css" type="text/css" media="screen">
+ </head>
+
+ <body>
+ <div class="off-canvas-wrapper"> {{ "<!-- Definition of global off canvas wrapper -->" | safeHTML }}
+ <div class="off-canvas-wrapper-inner" data-off-canvas-wrapper> {{ "<!-- Definition of inner off canvas wrapper -->" | safeHTML }}
+
+ {{ "<!-- Menu -->" | safeHTML }}
+ <div class="off-canvas position-left" id="mobile-menu" data-off-canvas>
+ <ul>
+ <li><a href="#">One</a></li>
+ <li><a href="#">Two</a></li>
+ <li><a href="#">Three</a></li>
+ </ul>
+ </div>
+
+ {{ "<!-- Page Content -->" | safeHTML }}
+ <div class="off-canvas-content" data-off-canvas-content>
+
+ {{ "<!-- Foundation Mobile Menu -->" | safeHTML }}
+
+ <div class="titlebar show-for-small-only">
+ <div class="title-bar left">
+ <button class="menu-icon" type="button" data-open="mobile-menu"></button>
+ <span class="title-bar-title">MENU</span>
+ </div>
+ </div>
+
+ {{ "<!-- Partials that make up the site -->" | safeHTML }}
+ {{ partial "nav.html" . }}
+
+ {{ partial "hero.html" . }}
+
+ <h1>404 - The page you are looking for was not found </h1>
+
+ {{ partial "footer.html" . }}
+ </div> {{ "<!-- End page content menu wrapper -->" | safeHTML }}
+
+ </div> {{ "<!-- End of global off canvas inner wrapper -->" | safeHTML }}
+ </div> {{ "<!-- End of global off canvas wrapper -->" | safeHTML }}
+
+
+ {{ "<!-- JS includes -->" | safeHTML }}
+
+ <script src="{{ .Site.BaseURL }}js/jquery.js"></script>
+ <script src="{{ .Site.BaseURL }}js/what-input.js"></script>
+ <script src="{{ .Site.BaseURL }}js/foundation.js"></script>
+ <script src="{{ .Site.BaseURL }}js/app.js"></script>
+
+ </body>
+</html>
+
+
+
+ \ No newline at end of file