|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="{{ site.lang | default: "en-US" }}"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + |
| 8 | + {% seo %} |
| 9 | + <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> |
| 10 | + <!--[if lt IE 9]> |
| 11 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> |
| 12 | + <![endif]--> |
| 13 | +</head> |
| 14 | +<body> |
| 15 | +<div class="wrapper"> |
| 16 | + <header> |
| 17 | + <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> |
| 18 | + |
| 19 | + {% if site.logo %} |
| 20 | + <img src="{{site.logo | relative_url}}" alt="Logo" /> |
| 21 | + {% endif %} |
| 22 | + |
| 23 | + <p>{{ site.description | default: site.github.project_tagline }}</p> |
| 24 | + |
| 25 | + {% if site.github.is_project_page %} |
| 26 | + <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> |
| 27 | + {% endif %} |
| 28 | + |
| 29 | + <ul> |
| 30 | + <li><a href="start.html">Getting Started</a></li> |
| 31 | + <li><a href="connection.html">Client Connection</a></li> |
| 32 | + <li><a href="create.html">Create</a></li> |
| 33 | + <li><a href="read.html">Read</a></li> |
| 34 | + <li><a href="update.html">Update</a></li> |
| 35 | + <li><a href="update.html">Update</a></li> |
| 36 | + <li><a href="replace.html">Replace</a></li> |
| 37 | + <li><a href="delete.html">Delete</a></li> |
| 38 | + <li><a href="list.html">List</a></li> |
| 39 | + </ul> |
| 40 | + |
| 41 | + {% if site.github.is_user_page %} |
| 42 | + <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> |
| 43 | + {% endif %} |
| 44 | + |
| 45 | + {% if site.show_downloads %} |
| 46 | + <ul class="downloads"> |
| 47 | + <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> |
| 48 | + <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> |
| 49 | + <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> |
| 50 | + </ul> |
| 51 | + {% endif %} |
| 52 | + </header> |
| 53 | + <section> |
| 54 | + |
| 55 | + {{ content }} |
| 56 | + |
| 57 | + </section> |
| 58 | + <footer> |
| 59 | + {% if site.github.is_project_page %} |
| 60 | + <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> |
| 61 | + {% endif %} |
| 62 | + <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> |
| 63 | + </footer> |
| 64 | +</div> |
| 65 | +<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> |
| 66 | +{% if site.google_analytics %} |
| 67 | +<script> |
| 68 | +(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
| 69 | + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
| 70 | + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
| 71 | +})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); |
| 72 | +ga('create', '{{ site.google_analytics }}', 'auto'); |
| 73 | +ga('send', 'pageview'); |
| 74 | +</script> |
| 75 | +{% endif %} |
| 76 | +</body> |
| 77 | +</html> |
0 commit comments