techbubble 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +48 -0
  4. data/_includes/archive.html +15 -0
  5. data/_includes/callout.html +1 -0
  6. data/_includes/custom/getting_started_series.html +19 -0
  7. data/_includes/custom/getting_started_series_next.html +10 -0
  8. data/_includes/custom/series_acme.html +19 -0
  9. data/_includes/custom/series_acme_next.html +30 -0
  10. data/_includes/custom/sidebarconfigs.html +36 -0
  11. data/_includes/custom/usermap.html +14 -0
  12. data/_includes/custom/usermapcomplex.html +91 -0
  13. data/_includes/disqus.html +16 -0
  14. data/_includes/feedback.html +1 -0
  15. data/_includes/footer.html +9 -0
  16. data/_includes/google_analytics.html +6 -0
  17. data/_includes/head.html +36 -0
  18. data/_includes/head_print.html +33 -0
  19. data/_includes/image.html +1 -0
  20. data/_includes/important.html +1 -0
  21. data/_includes/initialize_shuffle.html +130 -0
  22. data/_includes/inline_image.html +1 -0
  23. data/_includes/links.html +44 -0
  24. data/_includes/note.html +1 -0
  25. data/_includes/sidebar.html +56 -0
  26. data/_includes/taglogic.html +32 -0
  27. data/_includes/tip.html +1 -0
  28. data/_includes/toc.html +21 -0
  29. data/_includes/topnav.html +75 -0
  30. data/_includes/warning.html +1 -0
  31. data/_layouts/default.html +80 -0
  32. data/_layouts/default_print.html +25 -0
  33. data/_layouts/none.html +3 -0
  34. data/_layouts/page.html +70 -0
  35. data/_layouts/page_print.html +15 -0
  36. data/_layouts/post.html +41 -0
  37. data/_sass/bootstrap.min.css +5 -0
  38. data/_sass/customstyles.css +1181 -0
  39. data/_sass/font-awesome.min.css +4 -0
  40. data/_sass/fonts/FontAwesome.otf +0 -0
  41. data/_sass/fonts/fontawesome-webfont.eot +0 -0
  42. data/_sass/fonts/fontawesome-webfont.svg +565 -0
  43. data/_sass/fonts/fontawesome-webfont.ttf +0 -0
  44. data/_sass/fonts/fontawesome-webfont.woff +0 -0
  45. data/_sass/fonts/fontawesome-webfont.woff2 +0 -0
  46. data/_sass/lavish-bootstrap.css +5898 -0
  47. data/_sass/modern-business.css +93 -0
  48. data/_sass/printstyles.css +160 -0
  49. data/_sass/syntax.css +60 -0
  50. data/_sass/theme-blue.css +102 -0
  51. data/_sass/theme-green.css +99 -0
  52. data/assets/js/customscripts.js +55 -0
  53. data/assets/js/jekyll-search.js +1 -0
  54. data/assets/js/jquery.ba-throttle-debounce.min.js +9 -0
  55. data/assets/js/jquery.localScroll.min.js +7 -0
  56. data/assets/js/jquery.navgoco.min.js +8 -0
  57. data/assets/js/jquery.scrollTo.min.js +7 -0
  58. data/assets/js/jquery.shuffle.min.js +1588 -0
  59. data/assets/js/mydoc_scroll.html +240 -0
  60. data/assets/js/toc.js +82 -0
  61. metadata +145 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b1de0964204b28d2bc05bec59e051243ad9a6116
4
+ data.tar.gz: d04db69e0613fc7b5de31e8dc632e9ae61f3ffbb
5
+ SHA512:
6
+ metadata.gz: 4e6e4d0c2ec851ba8f4e8817405cd36a196462f0b3e88922660d6ca2030fc7b1b7fd57626c2ba3b280ac6d27a4387b063301dbb56a12281cb17562897dfec983
7
+ data.tar.gz: b5ef6b7745eefc9dcf05b446bc337d331cc642b66adb802454c405a8069057d885a3fbc876aa6867f8cff7d9ff74e923036eefef902663348c2f6439bb45bd57
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Jay Kola
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,48 @@
1
+ # techbubble
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "techbubble"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: techbubble
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install techbubble
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
44
+
45
+ ## License
46
+
47
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: default
3
+ type: archive
4
+ ---
5
+
6
+ <div class="post-header">
7
+ <h1 class="post-title-main">{{ page.title }}</h1>
8
+ </div>
9
+ <div class="post-content">
10
+
11
+ {{ content }}
12
+ </div>
13
+
14
+
15
+
@@ -0,0 +1 @@
1
+ <div markdown="span" class="bs-callout bs-callout-{{include.type}}">{{include.content}}</div>
@@ -0,0 +1,19 @@
1
+ <div class="seriesContext">
2
+ <div class="btn-group">
3
+ <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Getting Started <span class="caret"></span></button>
4
+ <ol class="dropdown-menu">
5
+ {% assign pages = site.pages | sort:"weight" %}
6
+ {% for p in pages %}
7
+ {% if p.series == "Getting Started" %}
8
+ {% if p.url == page.url %}
9
+ <li class="active"> → {{p.title}}</li>
10
+ {% else %}
11
+ <li>
12
+ <a href="{{p.url | remove: "/"}}">{{p.title}}</a>
13
+ </li>
14
+ {% endif %}
15
+ {% endif %}
16
+ {% endfor %}
17
+ </ol>
18
+ </div>
19
+ </div>
@@ -0,0 +1,10 @@
1
+ <p>{% assign series_pages = site.tags.series_acme %}
2
+ {% for p in pages %}
3
+ {% if p.series == "Getting Started" %}
4
+ {% assign nextTopic = page.weight | plus: "1" %}
5
+ {% if p.weight == nextTopic %}
6
+ <a href="{{p.url | remove: "/"}}"><button type="button" class="btn btn-primary">Next: {{p.title}}</button></a>
7
+ {% endif %}
8
+ {% endif %}
9
+ {% endfor %}
10
+ </p>
@@ -0,0 +1,19 @@
1
+ <div class="seriesContext">
2
+ <div class="btn-group">
3
+ <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Series Demo <span class="caret"></span></button>
4
+ <ol class="dropdown-menu">
5
+ {% assign pages = site.pages | sort:"weight" %}
6
+ {% for p in pages %}
7
+ {% if p.series == "ACME series" %}
8
+ {% if p.url == page.url %}
9
+ <li class="active"> → {{p.weight}}. {{p.title}}</li>
10
+ {% else %}
11
+ <li>
12
+ <a href="{{p.url | remove: "/"}}">{{p.weight}}. {{p.title}}</a>
13
+ </li>
14
+ {% endif %}
15
+ {% endif %}
16
+ {% endfor %}
17
+ </ol>
18
+ </div>
19
+ </div>
@@ -0,0 +1,30 @@
1
+ <div class="seriesContext">
2
+ <a>
3
+ {% assign pages = site.pages | sort:"weight" %}
4
+ {% for pg in pages %}
5
+ {% if pg.series == "ACME series" %}
6
+ {% if pg.weight > page.weight %}
7
+ <a href="{{pg.url | remove: '/'}}"><button type="button" class="btn btn-primary">Next: {{pg.title}}</button></a>
8
+ {% break %}
9
+ {% endif %}
10
+ {% endif %}
11
+ {% endfor %}
12
+ </a>
13
+ &nbsp;
14
+ <div class="btn-group">
15
+ <button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle">Jump to: <span class="caret"></span></button>
16
+ <ol class="dropdown-menu">
17
+ {% for pg in pages %}
18
+ {% if pg.series == "ACME series" %}
19
+ {% if pg.url == page.url %}
20
+ <li class="active"> → {{pg.weight}}. {{pg.title}}</li>
21
+ {% else %}
22
+ <li>
23
+ <a href="{{pg.url | remove: '/'}}">{{pg.title}}</a>
24
+ </li>
25
+ {% endif %}
26
+ {% endif %}
27
+ {% endfor %}
28
+ </ol>
29
+ </div>
30
+ </div>
@@ -0,0 +1,36 @@
1
+ {% if page.sidebar == "home_sidebar" %}
2
+ {% assign sidebar = site.data.sidebars.home_sidebar.entries %}
3
+
4
+ {% elsif page.sidebar == "product1_sidebar" %}
5
+ {% assign sidebar = site.data.sidebars.product1_sidebar.entries %}
6
+
7
+ {% elsif page.sidebar == "product2_sidebar" %}
8
+ {% assign sidebar = site.data.sidebars.product2_sidebar.entries %}
9
+
10
+ {% elsif page.sidebar == "mydoc_sidebar" %}
11
+ {% assign sidebar = site.data.sidebars.mydoc_sidebar.entries %}
12
+
13
+ {% elsif page.sidebar == "operon_sidebar" %}
14
+ {% assign sidebar = site.data.sidebars.operon_sidebar.entries %}
15
+
16
+ {% else %}
17
+ {% assign sidebar = site.data.sidebars.home_sidebar.entries %}
18
+ {% endif %}
19
+
20
+
21
+
22
+ {% comment %}
23
+ sidebar configuration for print files
24
+ {% endcomment %}
25
+
26
+ {% if site.product == "mydoc" %}
27
+ {% assign sidebar_pdf = site.data.sidebars.mydoc_sidebar.entries %}
28
+ {% endif %}
29
+
30
+ {% if site.product == "product1" %}
31
+ {% assign sidebar_pdf = site.data.sidebars.product1_sidebar.entries %}
32
+ {% endif %}
33
+
34
+ {% if site.product == "product2" %}
35
+ {% assign sidebar_pdf = site.data.sidebars.product2_sidebar.entries %}
36
+ {% endif %}
@@ -0,0 +1,14 @@
1
+
2
+ <div id="userMap">
3
+ <div class="content"><a href="p2_sample1.html"><div class="box box1">Connect to ADB</div></a></div>
4
+ <div class="arrow">→</div>
5
+ <div class="content"><a href="p2_sample2.html"><div class="box box2">Download and Build the Starter Kit</div></a></div>
6
+ <div class="arrow">→</div>
7
+ <div class="content"><a href="p2_sample3.html"><div class="box box3">Take a Tour</div></a></div>
8
+ <div class="arrow">→</div>
9
+ <div class="content"><a href="p2_sample4.html"><div class="box box4">Load Your Widgets</div></a></div>
10
+ <div class="arrow">→</div>
11
+ <div class="content"><a href="p2_sample5.html"><div class="box box5">Query for Something</div></a></div>
12
+ <div class="clearfix"></div>
13
+
14
+ </div>
@@ -0,0 +1,91 @@
1
+ <div id="userMap">
2
+
3
+ <!-- Button trigger modal -->
4
+ <button type="button" class="btn btn-default btn-lg modalButton1" data-toggle="modal" data-target="#myModal1">Get Started</button>
5
+
6
+ <!-- Modal -->
7
+ <div class="modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
8
+ <div class="modal-dialog" role="document">
9
+ <div class="modal-content">
10
+ <div class="modal-header">
11
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
12
+ <h4 class="modal-title" id="myModalLabel">Get Started</h4>
13
+ </div>
14
+ <div class="modal-body">
15
+ <p>This is just dummy text ... Your first steps should be to get started. You will need to do the following:</p>
16
+
17
+ <ul>
18
+ <li><a href="p2_sample6.html">Sample 6</a></li>
19
+ <li><a href="p2_sample7.html">Sample 7</a></li>
20
+ <li><a href="p2_sample8.html">Sample 8</a></li>
21
+ </ul>
22
+ <p>If you run into any of these setup issues, you must solve them before you can continue on.</p>
23
+
24
+ </div>
25
+ <div class="modal-footer">
26
+ <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </div>
31
+ <span class="complexArrow">→</span>
32
+
33
+ <!-- Button trigger modal -->
34
+ <button type="button" class="btn btn-default btn-lg modalButton2" data-toggle="modal" data-target="#myModal2">Build your widgets</button>
35
+ <!-- Modal -->
36
+ <div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
37
+ <div class="modal-dialog" role="document">
38
+ <div class="modal-content">
39
+ <div class="modal-header">
40
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
41
+ <h4 class="modal-title" id="myModalLabel">Build your widgets</h4>
42
+ </div>
43
+ <div class="modal-body">
44
+ <p>In this step, you will build the widgets for your system. The widgets form the various components that blah blah blah this is dummy text power the nuclear capabilities of your energy transformer into deep space using wormhole technology and warp drive speeds.</p>
45
+
46
+ <p>In order to configure your widgets, you will need to follow these topics:</p>
47
+ <ul>
48
+ <li><a href="p2_sample9.html">Sample 9</a></li>
49
+ <li><a href="p2_sample10.html">Sample 10</a></li>
50
+ <li><a href="p2_sample11.html">Sample 11</a></li>
51
+ </ul>
52
+ </div>
53
+ <div class="modal-footer">
54
+ <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ </div>
59
+
60
+ <span class="complexArrow">→</span>
61
+
62
+ <!-- Button trigger modal -->
63
+ <button type="button" class="btn btn-default btn-lg modalButton3" data-toggle="modal" data-target="#myModal3">Publish your app</button>
64
+ <!-- Modal -->
65
+ <div class="modal fade" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
66
+ <div class="modal-dialog" role="document">
67
+ <div class="modal-content">
68
+ <div class="modal-header">
69
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
70
+ <h4 class="modal-title" id="myModalLabel">Publish your app</h4>
71
+ </div>
72
+ <div class="modal-body">
73
+ <p>After you've configured all the necessary components to build your space transformer, you need to publish your app. Of course this content is also just dummy text. Pay no particular attention to the content but rather the format and placement of the map.</p>
74
+ <p>To publish your app, see the following:
75
+ <ul>
76
+ <li><a href="p2_sample12.html">Sample 12</a></li>
77
+ <li><a href="p2_sample13.html">Sample 13</a></li>
78
+ <li><a href="p2_sample14.html">Sample 14</a></li>
79
+ </ul>
80
+ </div>
81
+ <div class="modal-footer">
82
+ <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+
88
+
89
+ <div class="clearfix"></div>
90
+
91
+ </div>
@@ -0,0 +1,16 @@
1
+ {% if site.disqus_shortname %}
2
+
3
+ <div id="disqus_thread"></div>
4
+ <script type="text/javascript">
5
+ /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
6
+ var disqus_shortname = '{{site.disqus_shortname}}'; // required: replace example with your forum shortname
7
+
8
+ /* * * DON'T EDIT BELOW THIS LINE * * */
9
+ (function() {
10
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
11
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
12
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
13
+ })();
14
+ </script>
15
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
16
+ {% endif %}
@@ -0,0 +1 @@
1
+ <li><a class="email" title="Submit feedback" href="#" onclick="javascript:window.location='mailto:{{site.feedback_email}}?subject={{site.feedback_subject_line}} feedback&body=I have some feedback about the {{page.title}} page: ' + window.location.href;"><i class="fa fa-envelope-o"></i> Feedback</a><li>
@@ -0,0 +1,9 @@
1
+ <footer>
2
+ <div class="row">
3
+ <div class="col-lg-12 footer">
4
+ &copy;{{ site.time | date: "%Y" }} {{site.company_name}}. All rights reserved. <br />
5
+ {% if page.last_updated %}<span>Page last updated:</span> {{page.last_updated}}<br/>{% endif %} Site last generated: {{ site.time | date: "%b %-d, %Y" }} <br />
6
+ <p><img src="{{ "images/company_logo.png" }}" alt="Company logo"/></p>
7
+ </div>
8
+ </div>
9
+ </footer>
@@ -0,0 +1,6 @@
1
+ <!-- the google_analytics_id gets auto inserted from the config file -->
2
+
3
+ {% if site.google_analytics %}
4
+
5
+ <script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','{{site.google_analytics}}','auto');ga('require','displayfeatures');ga('send','pageview');</script>
6
+ {% endif %}
@@ -0,0 +1,36 @@
1
+ <meta charset="utf-8">
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <meta name="description" content="{% if page.summary %}{{ page.summary | strip_html | strip_newlines | truncate: 160 }}{% endif %}">
5
+ <meta name="keywords" content="{{page.tags}}{% if page.tags %}, {% endif %} {{page.keywords}}">
6
+ <title>{{ page.title }} | {{ site.site_title }}</title>
7
+ <link rel="stylesheet" href="{{ "css/syntax.css" }}">
8
+
9
+
10
+ <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
11
+ <!--<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">-->
12
+ <link rel="stylesheet" href="{{ "css/modern-business.css" }}">
13
+ <link rel="stylesheet" href="{{ "css/lavish-bootstrap.css" }}">
14
+ <link rel="stylesheet" href="{{ "css/customstyles.css" }}">
15
+ <link rel="stylesheet" href="{{ "css/theme-blue.css" }}">
16
+
17
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
18
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
19
+ <script src="{{ "js/jquery.navgoco.min.js" }}"></script>
20
+
21
+
22
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
23
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/2.0.0/anchor.min.js"></script>
24
+ <script src="{{ "js/toc.js" }}"></script>
25
+ <script src="{{ "js/customscripts.js" }}"></script>
26
+
27
+ <link rel="shortcut icon" href="{{ "images/favicon.ico" }}">
28
+
29
+ <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
30
+ <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
31
+ <!--[if lt IE 9]>
32
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
33
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
34
+ <![endif]-->
35
+
36
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "feed.xml" | prepend: site.url }}">
@@ -0,0 +1,33 @@
1
+ <meta charset="utf-8">
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <meta name="description" content="{% if page.summary %}{{ page.summary | strip_html | strip_newlines | truncate: 160 }}{% endif %}">
5
+ <meta name="keywords" content="{{page.tags}}{% if page.tags %}, {% endif %} {{page.keywords}}">
6
+ <title>{% if page.homepage == true %} {{site.homepage_title}} {% elsif page.title %}{{ page.title }}{% endif %} | {{ site.site_title }}</title>
7
+
8
+
9
+ <link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl | prepend: site.url }}">
10
+ <link rel="stylesheet" href="{{ "/css/font-awesome.min.css" | prepend: site.baseurl | prepend: site.url }}">
11
+ <link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | prepend: site.baseurl | prepend: site.url }}">
12
+ <link rel="stylesheet" href="{{ "/css/modern-business.css" | prepend: site.baseurl | prepend: site.url }}">
13
+ <link rel="stylesheet" href="{{ "/css/lavish-bootstrap.css" | prepend: site.baseurl | prepend: site.url }}">
14
+ <link rel="stylesheet" href="{{ "/css/customstyles.css" | prepend: site.baseurl | prepend: site.url }}">
15
+ <link rel="stylesheet" href="{{ "/css/theme-green.css" | prepend: site.baseurl | prepend: site.url }}">
16
+ <link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl | prepend: site.url }}">
17
+ <link rel="stylesheet" href="{{ "/css/printstyles.css" | prepend: site.baseurl }}">
18
+
19
+ <script>
20
+ Prince.addScriptFunc("datestamp", function() {
21
+ return "PDF last generated: {{ site.time | date: '%B %d, %Y' }}";
22
+ });
23
+ </script>
24
+
25
+ <script>
26
+ Prince.addScriptFunc("guideName", function() {
27
+ return "{{site.print_title}} User Guide";
28
+ });
29
+ </script>
30
+
31
+
32
+
33
+
@@ -0,0 +1 @@
1
+ <figure>{% if {{include.url}} %}<a class="no_icon" target="_blank" href="{{include.url}}">{% endif %}<img class="docimage" src="images/{{include.file}}" alt="{{include.alt}}" {% if {{include.max-width}} %}style="max-width: {{include.max-width}}px"{% endif %} />{% if {{include.url}} %}</a>{% endif %}{% if {{include.caption}} %}<figcaption>{{include.caption}}</figcaption>{% endif %}</figure>
@@ -0,0 +1 @@
1
+ <div markdown="span" class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important:</b> {{include.content}}</div>