aboutsummaryrefslogtreecommitdiffstats
path: root/_layouts
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-01 15:23:41 -0600
committerMatt Rude <[email protected]>2018-02-01 15:23:41 -0600
commit2277bbda4e361750395251df8372aba9e69931fb (patch)
tree69cf8c45fe38924f95869e1878668afe088f7571 /_layouts
downloadxmpp-site-lite-2277bbda4e361750395251df8372aba9e69931fb.tar.gz
xmpp-site-lite-2277bbda4e361750395251df8372aba9e69931fb.tar.bz2
xmpp-site-lite-2277bbda4e361750395251df8372aba9e69931fb.zip
Starting Out
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html6
-rw-r--r--_layouts/definitions.html6
-rw-r--r--_layouts/news.html10
-rw-r--r--_layouts/user-guides.html15
-rw-r--r--_layouts/welcome.html5
5 files changed, 42 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..cebd77a
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+{% include header.html %}
+{% include menu.html %}
+<div class="container offsetanchor" style="padding-top:80px;padding-bottom:60px;">
+{{ content }}
+{% include footer.html %}
diff --git a/_layouts/definitions.html b/_layouts/definitions.html
new file mode 100644
index 0000000..e596de9
--- /dev/null
+++ b/_layouts/definitions.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+{% include header.html %}
+{% include menu.html %}
+<div id="definitions" class="container offsetanchor" style="padding-top:80px;">
+{{ content }}
+{% include footer.html %}
diff --git a/_layouts/news.html b/_layouts/news.html
new file mode 100644
index 0000000..80ab471
--- /dev/null
+++ b/_layouts/news.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+{% include header.html %}
+<div id="header">
+ <h1>{{ site.title }}</h1>
+ <h4><small>node: </small>{{ site.name }}</h4>
+</div>
+{% include menu.html %}
+<h2>{{ page.title }}</h2>
+{{ content }}
+{% include footer.html %}
diff --git a/_layouts/user-guides.html b/_layouts/user-guides.html
new file mode 100644
index 0000000..b5a7bdd
--- /dev/null
+++ b/_layouts/user-guides.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+{% include header.html %}
+{% include menu.html %}
+<div class="container offsetanchor" style="padding-top:80px;">
+<center><img src="/assets/img/clients/{{ page.client}}_logo.png" alt="{{ page.client | capitalize }} XMPP Client Logo" height="128px" width="128px"><h1>{{ page.client | capitalize }} User Guide</h1></center>
+
+<!--
+<div class="col-md-4 pull-right float-right">
+ <center><img src="/assets/img/clients/{{ page.client}}_logo.png" alt="{{ page.client | capitalize }} XMPP Client Logo" height="80px" width="80px"><h1></center>
+ <center><h3>{{ page.client | capitalize }}</h3></center>
+</div>
+-->
+
+{{ content }}
+{% include footer.html %}
diff --git a/_layouts/welcome.html b/_layouts/welcome.html
new file mode 100644
index 0000000..5b9633b
--- /dev/null
+++ b/_layouts/welcome.html
@@ -0,0 +1,5 @@
+<!DOCTYPE html>
+{% include header.html %}
+{% include menu.html %}
+{{ content }}
+{% include footer.html %}