summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2019-02-20 14:31:57 +0100
committerMiguel <m.i@gmx.at>2019-02-20 14:31:57 +0100
commit428d1b9565cb9a7c5ea61eaaa5358354912488e8 (patch)
tree36ee06547b6733b97ad49092a344c766a1ec2a83 /examples
parent0b34aca85e4a233945d0b09e6e24e048ded49e96 (diff)
added example page
Diffstat (limited to 'examples')
-rw-r--r--examples/example01/0010_first/index.md4
-rw-r--r--examples/example01/0020_second/0010_sub_first/index.md1
-rw-r--r--examples/example01/0020_second/0020_sub_second/index.md1
-rw-r--r--examples/example01/0020_second/index.md4
-rw-r--r--examples/example01/index.md4
-rw-r--r--examples/example01/template.html66
6 files changed, 80 insertions, 0 deletions
diff --git a/examples/example01/0010_first/index.md b/examples/example01/0010_first/index.md
new file mode 100644
index 0000000..02f2cb3
--- /dev/null
+++ b/examples/example01/0010_first/index.md
@@ -0,0 +1,4 @@
+first page
+==========
+
+this is the first page
diff --git a/examples/example01/0020_second/0010_sub_first/index.md b/examples/example01/0020_second/0010_sub_first/index.md
new file mode 100644
index 0000000..257cc56
--- /dev/null
+++ b/examples/example01/0020_second/0010_sub_first/index.md
@@ -0,0 +1 @@
+foo
diff --git a/examples/example01/0020_second/0020_sub_second/index.md b/examples/example01/0020_second/0020_sub_second/index.md
new file mode 100644
index 0000000..5716ca5
--- /dev/null
+++ b/examples/example01/0020_second/0020_sub_second/index.md
@@ -0,0 +1 @@
+bar
diff --git a/examples/example01/0020_second/index.md b/examples/example01/0020_second/index.md
new file mode 100644
index 0000000..48827ce
--- /dev/null
+++ b/examples/example01/0020_second/index.md
@@ -0,0 +1,4 @@
+second page
+===========
+
+second page has a submenu
diff --git a/examples/example01/index.md b/examples/example01/index.md
new file mode 100644
index 0000000..6363c7b
--- /dev/null
+++ b/examples/example01/index.md
@@ -0,0 +1,4 @@
+test page
+=========
+
+this is a simply a md file
diff --git a/examples/example01/template.html b/examples/example01/template.html
new file mode 100644
index 0000000..efef39f
--- /dev/null
+++ b/examples/example01/template.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<html lang="en">
+
+ <head>
+ <title>###TITLE###</title>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <meta name="description" content="###DESCRIPTION###"/>
+ <meta name="keywords" content="###KEYWORDS###" />
+ <meta name="author" content="Anonymous" />
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
+ <link rel="stylesheet" href="###ROOT###/pandoc.css" />
+ </head>
+
+ <body>
+
+ <div class="container" id="top">
+
+ <div class="row">
+
+ <div class="col-12 p-0">
+
+ <nav class="navbar navbar-expand-sm navbar-dark bg-primary">
+
+ <a class="navbar-brand" href="###ROOT###/index.html">
+ testpage
+ </a>
+
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
+ <span class="navbar-toggler-icon"></span>
+ </button>
+
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
+ <ul class="navbar-nav mr-auto">
+ ###MENU###
+ </ul>
+ </div>
+
+ </nav>
+
+ <nav aria-label="breadcrumb">
+ <ol class="breadcrumb">
+ ###BREADCRUMBS###
+ </ol>
+ </nav>
+
+ <div class="px-3">
+ ###CONTENT###
+ <ul class="nav flex-column">
+ ###SUBMENU###
+ </ul>
+ </div>
+
+ <div id="footer" class="p-3 bg-primary text-light text-center">
+ powered by <a class="text-white" href="https://www.idziorek.net/blog/Haskell-Projects/Estatico-Page-Maker/index.html">estático</a>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
+ </body>
+
+</html>