Skip to content

Commit 32a318e

Browse files
authored
Merge pull request #5 from virtualdesktopdevops/dev
Jekyll theme customization + seo data
2 parents 9a97235 + b321c8d commit 32a318e

3 files changed

Lines changed: 113 additions & 1 deletion

File tree

_config.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-
theme: jekyll-theme-slate
1+
title: XenDesktop 7 Delivery Controller (master) puppet module
2+
description: Puppet module installing an enterprise production grade Citrix XenDesktop 7.x Delivery Controller, including Citrix site creation and administrator rights setup.
3+
google_site_verification: R71XDERzPOp9lUudi8X6iKrpcoIgDG_1HzRMz_TMaDY
4+
google_analytics: UA-12767493-6
5+
theme: jekyll-theme-slate
6+
show_downloads: true
7+
plugins:
8+
- jekyll-seo-tag
9+
- jekyll-sitemap
10+
- jekyll-feed
11+
- jekyll-redirect-from
12+
- jekyll-mentions
13+
jekyll-mentions:
14+
base_url: http://www.virtualdesktopdevops.com/puppet-modules/xendesktop-delivery-controller.html

_layouts/default.html

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
4+
<head>
5+
<meta charset='utf-8'>
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta name="viewport" content="width=device-width,maximum-scale=2">
8+
<meta name="description" content="{{ site.title | default: site.github.repository_name }} : {{ site.description | default: site.github.project_tagline }}">
9+
10+
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
11+
12+
<!-- Latest compiled and minified CSS -->
13+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
14+
15+
<!-- Optional theme -->
16+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
17+
18+
<!-- Latest compiled and minified JavaScript -->
19+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
20+
21+
{% seo %}
22+
</head>
23+
24+
<body>
25+
26+
<!-- HEADER -->
27+
<div id="header_wrap" class="outer">
28+
<header class="inner">
29+
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
30+
31+
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1>
32+
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
33+
34+
{% if site.show_downloads %}
35+
<section id="downloads">
36+
<a class="zip_download_link" href="{{ site.github.zip_url }}">Download this project as a .zip file</a>
37+
<a class="tar_download_link" href="{{ site.github.tar_url }}">Download this project as a tar.gz file</a>
38+
</section>
39+
{% endif %}
40+
</header>
41+
</div>
42+
43+
<!-- MAIN CONTENT -->
44+
<div id="main_content_wrap" class="outer">
45+
<section id="main_content" class="inner">
46+
<div class=class="container-fluid">
47+
<div class="row">
48+
<div class="col-md-8">
49+
{{ content }}
50+
</div>
51+
<div class="col-md-4">
52+
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
53+
<!-- 300x600 virtualdesktopdevops.github.io -->
54+
<ins class="adsbygoogle"
55+
style="display:inline-block;width:300px;height:600px"
56+
data-ad-client="ca-pub-5008821634947841"
57+
data-ad-slot="8665929525"></ins>
58+
<script>
59+
(adsbygoogle = window.adsbygoogle || []).push({});
60+
</script>
61+
</div>
62+
</div>
63+
</div>
64+
</section>
65+
</div>
66+
67+
<!-- FOOTER -->
68+
<div id="footer_wrap" class="outer">
69+
<footer class="inner">
70+
{% if site.github.is_project_page %}
71+
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
72+
{% endif %}
73+
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
74+
</footer>
75+
</div>
76+
77+
{% if site.google_analytics %}
78+
<script type="text/javascript">
79+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
80+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
81+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
82+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
83+
ga('create', '{{ site.google_analytics }}', 'auto');
84+
ga('send', 'pageview');
85+
</script>
86+
{% endif %}
87+
</body>
88+
</html>

assets/css/style.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";
5+
6+
.inner {
7+
position: relative;
8+
max-width: 1200px;
9+
padding: 20px 10px;
10+
margin: 0 auto;
11+
}

0 commit comments

Comments
 (0)