From b321c8d72d53a80057818c679c3d1b792f00c9b7 Mon Sep 17 00:00:00 2001 From: matt6697 <32440697+matt6697@users.noreply.github.com> Date: Sat, 23 Dec 2017 11:00:51 +0100 Subject: [PATCH] Jekyll theme customization + seo data --- _config.yml | 15 +++++++- _layouts/default.html | 88 +++++++++++++++++++++++++++++++++++++++++++ assets/css/style.scss | 11 ++++++ 3 files changed, 113 insertions(+), 1 deletion(-) create mode 100644 _layouts/default.html create mode 100644 assets/css/style.scss diff --git a/_config.yml b/_config.yml index c741881..fa2dd07 100644 --- a/_config.yml +++ b/_config.yml @@ -1 +1,14 @@ -theme: jekyll-theme-slate \ No newline at end of file +title: XenDesktop 7 Delivery Controller (master) puppet module +description: Puppet module installing an enterprise production grade Citrix XenDesktop 7.x Delivery Controller, including Citrix site creation and administrator rights setup. +google_site_verification: R71XDERzPOp9lUudi8X6iKrpcoIgDG_1HzRMz_TMaDY +google_analytics: UA-12767493-6 +theme: jekyll-theme-slate +show_downloads: true +plugins: + - jekyll-seo-tag + - jekyll-sitemap + - jekyll-feed + - jekyll-redirect-from + - jekyll-mentions +jekyll-mentions: + base_url: http://www.virtualdesktopdevops.com/puppet-modules/xendesktop-delivery-controller.html diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..639fb46 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + +{% seo %} + + + + + +
+
+ View on GitHub + +

{{ site.title | default: site.github.repository_name }}

+

{{ site.description | default: site.github.project_tagline }}

+ + {% if site.show_downloads %} +
+ Download this project as a .zip file + Download this project as a tar.gz file +
+ {% endif %} +
+
+ + +
+
+
+
+
+ {{ content }} +
+
+ + + + +
+
+
+
+
+ + + + + {% if site.google_analytics %} + + {% endif %} + + diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..d9d36bc --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,11 @@ +--- +--- + +@import "{{ site.theme }}"; + +.inner { + position: relative; + max-width: 1200px; + padding: 20px 10px; + margin: 0 auto; +}