diff options
| author | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:19:52 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:19:52 -0700 |
| commit | b42718f7d9aac88a3048c616193f81deff49e401 (patch) | |
| tree | f964fbae3d81cb6af155d612985f4b344267f4b5 /_includes | |
| parent | attempt for a new design (diff) | |
| download | lumberjaph-b42718f7d9aac88a3048c616193f81deff49e401.tar.gz | |
First attempt with the new theme.
Diffstat (limited to '')
| -rw-r--r-- | _includes/browser-upgrade.html | 1 | ||||
| -rw-r--r-- | _includes/disqus_comments.html | 21 | ||||
| -rw-r--r-- | _includes/footer.html | 12 | ||||
| -rw-r--r-- | _includes/head.html | 55 | ||||
| -rw-r--r-- | _includes/navigation.html | 18 | ||||
| -rw-r--r-- | _includes/scripts.html | 21 |
6 files changed, 128 insertions, 0 deletions
diff --git a/_includes/browser-upgrade.html b/_includes/browser-upgrade.html new file mode 100644 index 0000000..6b6746b --- /dev/null +++ b/_includes/browser-upgrade.html @@ -0,0 +1 @@ +<!--[if lt IE 9]><div class="upgrade"><strong><a href="http://whatbrowser.org/">Your browser is quite old!</strong> Why not upgrade to a different browser to better enjoy this site?</a></div><![endif]-->
\ No newline at end of file diff --git a/_includes/disqus_comments.html b/_includes/disqus_comments.html new file mode 100644 index 0000000..0e1f7e3 --- /dev/null +++ b/_includes/disqus_comments.html @@ -0,0 +1,21 @@ +<script type="text/javascript"> + /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ + var disqus_shortname = '{{ site.disqus_shortname }}'; // required: replace example with your forum shortname + + /* * * DON'T EDIT BELOW THIS LINE * * */ + (function() { + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; + dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); + })(); + + /* * * DON'T EDIT BELOW THIS LINE * * */ + (function () { + var s = document.createElement('script'); s.async = true; + s.type = 'text/javascript'; + s.src = '//' + disqus_shortname + '.disqus.com/count.js'; + (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); + }()); +</script> +<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> +<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
\ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..f4c4e51 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,12 @@ +<span>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://mademistakes.com/">So Simple Theme</a>.</span> +<div class="social-icons"> + {% if site.owner.twitter %}<a href="http://twitter.com/{{ site.owner.twitter }}" title="{{ site.owner.name}} on Twitter" target="_blank"><i class="icon-twitter icon-2x"></i></a>{% endif %} + {% if site.owner.facebook %}<a href="http://facebook.com/{{ site.owner.facebook }}" title="{{ site.owner.name}} on Facebook" target="_blank"><i class="icon-facebook icon-2x"></i></a>{% endif %} + {% if site.owner.google_plus %}<a href="{{ site.owner.google_plus }}" title="{{ site.owner.name}} on Google+" target="_blank"><i class="icon-google-plus icon-2x"></i></a>{% endif %} + {% if site.owner.linkedin %}<a href="http://linkedin.com/in/{{ site.owner.linkedin }}" title="{{ site.owner.name}} on LinkedIn" target="_blank"><i class="icon-linkedin icon-2x"></i></a>{% endif %} + {% if site.owner.stackexchange %}<a href="{{ site.owner.stackexchange }}" title="{{ site.owner.name}} on StackExchange" target="_blank"><i class="icon-stackexchange icon-2x"></i></a>{% endif %} + {% if site.owner.instagram %}<a href="http://instagram.com/{{ site.owner.instagram }}" title="{{ site.owner.name}} on Instagram" target="_blank"><i class="icon-instagram icon-2x"></i></a>{% endif %} + {% if site.owner.flickr %}<a href="http://www.flickr.com/photos/{{ site.owner.flickr }}" title="{{ site.owner.name}} on Flickr" target="_blank"><i class="icon-flickr icon-2x"></i></a>{% endif %} + {% if site.owner.github %}<a href="http://github.com/{{ site.owner.github }}" title="{{ site.owner.name}} on Github" target="_blank"><i class="icon-github icon-2x"></i></a>{% endif %} + {% if site.owner.tumblr %}<a href="http://{{ site.owner.tumblr }}.tumblr.com" title="{{ site.owner.name}} on Tumblr" target="_blank"><i class="icon-tumblr icon-2x"></i></a>{% endif %} +</div><!-- /.social-icons -->
\ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..4622163 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,55 @@ +<meta charset="utf-8"> +<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.title }}</title> +<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> +{% if page.tags %}<meta name="keywords" content="{{ page.tags | join: ', ' }}">{% endif %} +{% if site.owner.twitter %}<!-- Twitter Card and Open Graph tags --> +<meta name="twitter:title" content="{% if page.title %}{{ page.title }} – {% endif %}{{ site.title }}"> +<meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> +<meta name="twitter:creator" content="@{{ site.owner.twitter }}"> +<meta name="twitter:card" content="summary"> +<meta name="twitter:image:src" content="{% if page.image.thumb %}{{ site.url }}/images/{{ page.image.thumb }}{% else %}{{ site.url }}/images/{{ site.logo }}{% endif %}">{% endif %} +<meta property="og:type" content="article"> +<meta property="og:title" content="{% if page.title %}{{ page.title }} – {% endif %}{{ site.title }}"> +<meta property="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> +<meta property="og:url" content="{{ site.url }}{{ page.url }}"> +<meta property="og:site_name" content="{{ site.title }}"> + +<!-- Webmaster Tools verfication --> +{% if site.google_verify %}<meta name="google-site-verification" content="{{ site.google_verify }}">{% endif %} +{% if site.bing_verify %}<meta name="msvalidate.01" content="{{ site.bing_verify }}">{% endif %} + +{% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} +<link rel="canonical" href="{{ canonical }}"> +<link href="{{ site.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed"> +{% if site.owner.google_plus %}<link rel="author" href="{{ site.owner.google_plus }}?rel=author">{% endif %} + +<!-- http://t.co/dKP3o1e --> +<meta name="HandheldFriendly" content="True"> +<meta name="MobileOptimized" content="320"> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> + +<!-- For all browsers --> +<link rel="stylesheet" href="{{ site.url }}/assets/css/main.css"> +<!-- Animations --> +<link rel="stylesheet" href="{{ site.url }}/assets/css/animate.css"> +<!-- Webfonts --> +<script src="//use.edgefonts.net/source-sans-pro:n2,i2,n3,i3,n4,i4,n6,i6,n7,i7,n9,i9;source-code-pro:n4,n7;volkhov.js"></script> + +<meta http-equiv="cleartype" content="on"> + +<!-- Load Modernizr --> +<script src="{{ site.url }}/assets/js/vendor/modernizr-2.6.2.custom.min.js"></script> + +<!-- Icons --> +<!-- 16x16 --> +<link rel="shortcut icon" href="{{ site.url }}/favicon.ico"> +<!-- 32x32 --> +<link rel="shortcut icon" href="{{ site.url }}/favicon.png"> +<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices --> +<link rel="apple-touch-icon-precomposed" href="{{ site.url }}/images/apple-touch-icon-precomposed.png"> +<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini --> +<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.url }}/images/apple-touch-icon-72x72-precomposed.png"> +<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch --> +<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/images/apple-touch-icon-114x114-precomposed.png"> +<!-- 144x144 (precomposed) for iPad 3rd and 4th generation --> +<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/images/apple-touch-icon-144x144-precomposed.png"> diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 0000000..6697c3f --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,18 @@ +<div class="navigation-wrapper"> + <nav role="navigation" id="site-nav" class="animated fadeInDown" itemscope itemtype="http://schema.org/SiteNavigationElement"> + <ul> + {% for link in site.links %} + <li><a href="{% if link.external %}{{ link.url }}{% else %}{{ site.url }}{{ link.url }}{% endif %}" {% if link.external %}target="_blank"{% endif %}>{{ link.title }}</a></li> + {% endfor %} + <li><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a> + </ul> + </nav> +</div><!-- /.navigation-wrapper --> + +<header class="masthead"> + <div class="wrap"> + <!-- <a href="{{ site.url }}" class="site-logo" rel="home" title="{{ site.title }}"><img src="{{ site.url }}/images/{{ site.logo }}" width="200" height="200" class="animated fadeInUp"></a> --> + <h1 class="site-title animated fadeIn"><a href="{{ site.url }}">{{ site.title }}</a></h1> + <h2 class="site-description animated fadeIn">{{ site.description }}</h2> + </div> +</header><!-- /.masthead --> diff --git a/_includes/scripts.html b/_includes/scripts.html new file mode 100644 index 0000000..6b4a6a8 --- /dev/null +++ b/_includes/scripts.html @@ -0,0 +1,21 @@ +<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> +<script>window.jQuery || document.write('<script src="{{ site.url }}/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script> +<script src="{{ site.url }}/assets/js/main.min.js"></script> +{% if site.google_analytics %} +<!-- Asynchronous Google Analytics snippet --> +<script> + var _gaq = _gaq || []; + var pluginUrl = + '//www.google-analytics.com/plugins/ga/inpage_linkid.js'; + _gaq.push(['_require', 'inpage_linkid', pluginUrl]); + _gaq.push(['_setAccount', '{{ site.google_analytics }}']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); +</script> +{% endif %} +{% if site.disqus_shortname and page.comments %}{% include disqus_comments.html %}{% endif %}
\ No newline at end of file |
