Skip to content

Commit

Permalink
Scheama etc
Browse files Browse the repository at this point in the history
  • Loading branch information
treffynnon committed Jul 13, 2015
1 parent dd6424c commit 4987629
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 5 deletions.
4 changes: 2 additions & 2 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<header class="top">
<div class="wrap">
<h1>SQL Style Guide</h1>
<p class="author">by
<a href="https://www.simonholywell.com">Simon Holywell</a> &middot;
<p class="author" itemprop="author">by
<a href="https://www.simonholywell.com" itemprop="url"><span itemprop="name">Simon Holywell</span></a> &middot;
<a href="https://twitter.com/treffynnon">@Treffynnon</a>
</p>
<p class="twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.sqlstyle.guide" data-text="SQL style guide by @treffynnon" data-size="large" data-dnt="true">Tweet</a>
Expand Down
41 changes: 38 additions & 3 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,52 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>{{ site.name }}</title>
<title property="og:title">{{ site.name }}</title>
<link href="http://fonts.googleapis.com/css?family=PT+Sans|Roboto+Slab|Droid+Sans+Mono" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">

<meta content="website" property="og:type">
<meta content="http://www.sqlstyle.guide/" property="og:url">
<meta content="0001-01-01 00:00:00 +0000 UTC" property="og:updated_time">
<meta content="https://www.facebook.com/holywell" property="article:author">
<meta content="https://www.facebook.com/holywell" property="article:publisher">
<meta content="0001-01-01 00:00:00 +0000 UTC" property="article:modified_time">
<meta content="" property="article:section">
<meta content="A code style guide for SQL code to ensure legible and maintainable projects." itemprop="description" name="description" property="og:description">
<meta content="sql, style guide, code style guide, simon holywell, holywell" itemprop="keywords" name="keywords">
<meta content="summary" name="twitter:card"></meta>
<meta content="SQL style guide by Simon Holywell" name="twitter:title">
<meta content="A code style guide for SQL code to ensure legible and maintainable projects." name="twitter:description">
<meta content="@treffynnon" name="twitter:site">
<meta content="@treffynnon" name="twitter:creator">
<meta content="sqlstyle.guide" name="twitter:domain">

<link href="http://plus.google.com/+SimonHolywell" rel="author">

<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', 'UA-65071829-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<body itemscope itemtype="http://schema.org/TechArticle">
{% include head.html %}
<div id="content" class="wrap">
{{ content }}
</div>
{% include foot.html %}
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<script>!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = "//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="scripts.js"></script>
</body>
Expand Down

0 comments on commit 4987629

Please sign in to comment.