|
| 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> |
0 commit comments