Improve code docs
This commit is contained in:
parent
833b95412d
commit
ca28e89a61
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
|
|
||||||
This is a development CSS file which is built to a minified
|
This is a development CSS file which is compiled to a minified
|
||||||
production stylesheet in assets/built/screen.css using gulp dev
|
production stylesheet in assets/built/screen.css using: gulp dev
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
107
default.hbs
107
default.hbs
|
@ -1,92 +1,77 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{@site.lang}}">
|
<html lang="{{@site.lang}}">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
{{!-- Document Settings --}}
|
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
|
||||||
{{!-- Base Meta --}}
|
|
||||||
<title>{{meta_title}}</title>
|
<title>{{meta_title}}</title>
|
||||||
<meta name="HandheldFriendly" content="True" />
|
<meta name="HandheldFriendly" content="True" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
{{!-- Styles'n'Scripts --}}
|
|
||||||
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
|
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
|
||||||
|
|
||||||
{{!-- This tag outputs SEO meta+structured data and other important settings --}}
|
|
||||||
{{ghost_head}}
|
{{ghost_head}}
|
||||||
|
{{!-- Outputs SEO meta+structured data and important settings, should always be in <head> --}}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="{{body_class}}">
|
<body class="{{body_class}}">
|
||||||
|
<div class="site-wrapper">
|
||||||
|
|
||||||
<div class="site-wrapper">
|
<header class="site-head">
|
||||||
|
<div class="site-head-container inner">
|
||||||
<header class="site-head">
|
<nav class="site-head-left">
|
||||||
<div class="site-head-container inner">
|
{{navigation}}
|
||||||
<nav class="site-head-left">
|
</nav>
|
||||||
{{navigation}}
|
<div class="site-head-center">
|
||||||
</nav>
|
{{#if @site.logo}}
|
||||||
<div class="site-head-center">
|
<a class="site-head-logo" href="{{@site.url}}"><img src="{{@site.logo}}" alt="{{@site.title}}" /></a>
|
||||||
{{#if @site.logo}}
|
{{else}}
|
||||||
<a class="site-head-logo" href="{{@site.url}}"><img src="{{@site.logo}}" alt="{{@site.title}}" /></a>
|
<a class="site-head-logo" href="{{@site.url}}">{{@site.title}}</a>
|
||||||
{{else}}
|
{{/if}}
|
||||||
<a class="site-head-logo" href="{{@site.url}}">{{@site.title}}</a>
|
</div>
|
||||||
|
<div class="site-head-right">
|
||||||
|
<div class="social-links">
|
||||||
|
{{#if @site.facebook}}
|
||||||
|
<a href="{{facebook_url @site.facebook}}" title="Facebook" target="_blank" rel="noopener">Facebook</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
{{#if @site.twitter}}
|
||||||
<div class="site-head-right">
|
<a href="{{twitter_url @site.twitter}}" title="Twitter" target="_blank" rel="noopener">Twitter</a>
|
||||||
<div class="social-links">
|
{{/if}}
|
||||||
{{#if @site.facebook}}
|
<a href="https://feedly.com/i/subscription/feed/{{@site.url}}/rss/" title="RSS" target="_blank" rel="noopener">RSS</a>
|
||||||
<a href="{{facebook_url @site.facebook}}" title="Facebook" target="_blank" rel="noopener">Facebook</a>
|
|
||||||
{{/if}}
|
|
||||||
{{#if @site.twitter}}
|
|
||||||
<a href="{{twitter_url @site.twitter}}" title="Twitter" target="_blank" rel="noopener">Twitter</a>
|
|
||||||
{{/if}}
|
|
||||||
<a href="https://feedly.com/i/subscription/feed/{{@site.url}}/rss/" title="RSS" target="_blank" rel="noopener">RSS</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
<main class="site-main">
|
<main class="site-main">
|
||||||
<div class="site-main-container inner">
|
<div class="site-main-container inner">
|
||||||
|
|
||||||
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
|
{{{body}}}
|
||||||
{{{body}}}
|
{{!-- All content gets inserted here, index.hbs, post.hbs, etc --}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
{{!-- The footer at the very bottom of the screen --}}
|
<footer class="site-foot">
|
||||||
<footer class="site-foot">
|
<div class="site-foot-container inner">
|
||||||
<div class="site-foot-container inner">
|
© {{date format="YYYY"}} <a href="{{@site.url}}">{{@site.title}}</a> — Published with <a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
|
||||||
© {{date format="YYYY"}} <a href="{{@site.url}}">{{@site.title}}</a> — Published with <a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
|
</div>
|
||||||
</div>
|
</footer>
|
||||||
</footer>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous">
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
||||||
</script>
|
|
||||||
|
|
||||||
{{#if pagination.pages}}
|
<script>
|
||||||
<script>
|
var maxPages = parseInt('{{pagination.pages}}');
|
||||||
// maxPages is a global variable that is needed to determine
|
</script>
|
||||||
// if we need to load more pages for the infinitescroll, or if
|
<script src="{{asset "built/infinitescroll.js"}}"></script>
|
||||||
// we reached the last page already.
|
|
||||||
var maxPages = parseInt('{{pagination.pages}}');
|
|
||||||
</script>
|
|
||||||
<script src="{{asset "built/infinitescroll.js"}}"></script>
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
{{!-- The #block helper will pull in data from the #contentFor other template files. In this case, there's some JavaScript which we only want to use in post.hbs, but it needs to be included down here, after jQuery has already loaded. --}}
|
|
||||||
{{{block "scripts"}}}
|
|
||||||
|
|
||||||
{{!-- Ghost outputs important scripts and data with this tag - it should always be the very last thing before the closing body tag --}}
|
{{{block "scripts"}}}
|
||||||
{{ghost_foot}}
|
{{!-- The #block helper will pull in data from the #contentFor other template files --}}
|
||||||
|
|
||||||
|
{{ghost_foot}}
|
||||||
|
{{!-- Outputs important scripts - should always be included before closing body tag --}}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue