mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-05 11:16:41 -07:00
Initial Version
This commit is contained in:
commit
76ee2dd12c
91 changed files with 7690 additions and 0 deletions
12
themes/hyde-x/layouts/partials/foot.html
Normal file
12
themes/hyde-x/layouts/partials/foot.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
{{ if isset .Site.Params "highlight" }}<script src="{{ "/js/highlight.pack.js" | absURL }}"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>{{ end }}
|
||||
{{ with .Site.Params.googleAnalytics }}
|
||||
<script>
|
||||
var _gaq=[['_setAccount','{{ . }}'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
{{ end }}
|
||||
</body>
|
||||
</html>
|
36
themes/hyde-x/layouts/partials/head.html
Normal file
36
themes/hyde-x/layouts/partials/head.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
|
||||
<head>
|
||||
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
<!-- Enable responsiveness on mobile devices-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
|
||||
<title>{{ .Title }} · {{ .Site.Author.name }}</title>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="{{ "/css/poole.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hyde.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/poole-overrides.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hyde-overrides.css" | absURL }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hyde-x.css" | absURL }}">
|
||||
{{ if isset .Site.Params "highlight" }}<link rel="stylesheet" href="{{ "/css/highlight/" | absURL }}{{ .Site.Params.highlight }}.css">{{ end }}
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||
|
||||
<!-- Icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "/touch-icon-144-precomposed.png" | absURL }}">
|
||||
<link href="{{ "/favicon.png" | absURL }}" rel="icon">
|
||||
|
||||
<!-- RSS -->
|
||||
{{ $siteTitle := .Site.Title }}
|
||||
{{ $authorName := .Site.Author.name }}
|
||||
{{ with .RSSLink }}<link href="{{ . }}" rel="alternate" type="application/rss+xml" title="{{ $siteTitle }} · {{ $authorName }}" />{{ end }}
|
||||
|
||||
<meta name="description" content="{{ if ne .Description "" }}{{ .Description }}{{ else }}{{ .Site.Params.defaultDescription }}{{ end }}">
|
||||
<meta name="keywords" content="{{ range $index, $element := .Keywords }}{{ if gt $index 0 }},{{ end }}{{ . }}{{ else }}{{ .Site.Params.defaultKeywords }}{{ end }}">
|
||||
{{ with .Site.Params.googleAuthorship }}<link rel="author" href="http://plus.google.com/{{ . }}">{{ end }}
|
||||
</head>
|
||||
<body{{ with .Site.Params.theme }} class="{{ . }}"{{ end }}>
|
||||
{{ partial "sidebar.html" . }}
|
51
themes/hyde-x/layouts/partials/sidebar.html
Normal file
51
themes/hyde-x/layouts/partials/sidebar.html
Normal file
|
@ -0,0 +1,51 @@
|
|||
<div class="sidebar">
|
||||
<div class="container sidebar-sticky">
|
||||
<div class="sidebar-about">
|
||||
{{ if isset .Site.Params "gravatarHash" }}
|
||||
<img src="https://www.gravatar.com/avatar/{{ .Site.Params.gravatarHash }}?s=200"
|
||||
alt="gravatar" title="{{ .Site.Author.name }}">
|
||||
{{ end }}
|
||||
<h1>{{ .Site.Author.name }}</h1>
|
||||
{{ with .Site.Params.tagline }}<p class="lead">{{ . | markdownify }}</p>{{ end }}
|
||||
</div>
|
||||
|
||||
<ul class="sidebar-nav">
|
||||
<li class="sidebar-nav-item"><a href="{{ "/" | absURL }}">{{ if isset .Site.Params "home"}}{{ .Site.Params.home }}{{ else }}Blog{{ end }}</a></li>
|
||||
{{ range .Site.Menus.main }}
|
||||
<li class="sidebar-nav-item">{{ .Pre }}<a href="{{ .URL | absURL }}">{{ .Name }}</a></li>
|
||||
{{end}}
|
||||
</ul>
|
||||
|
||||
<ul class="sidebar-nav">
|
||||
<li class="sidebar-nav-item">
|
||||
{{ with .Site.Params.github }}<a href="{{ . }}"><i class="fa fa-github-square fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.bitbucket }}<a href="{{ . }}"><i class="fa fa-bitbucket-square fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.stackOverflow }}<a href="{{ . }}"><i class="fa fa-stack-overflow fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.linkedin }}<a href="{{ . }}"><i class="fa fa-linkedin-square fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.googleplus }}<a href="{{ . }}"><i class="fa fa-google-plus-square fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.facebook }}<a href="{{ . }}"><i class="fa fa-facebook-square fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.twitter }}<a href="{{ . }}"><i class="fa fa-twitter-square fa-3x"></i></a>{{ end }}
|
||||
{{ with .Site.Params.youtube }}<a href="{{ . }}"><i class="fa fa-youtube-square fa-3x"></i></a>{{ end }}
|
||||
{{ if .Site.Params.rss }}<a href="{{ "/index.xml" | absURL }}" type="application/rss+xml"><i class="fa fa-rss-square fa-3x"></i></a>{{ end }}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
{{ if isset .Site.Params "flattr" }}
|
||||
<p><script id='flattr'>
|
||||
(function(id){
|
||||
var s = document.getElementById(id);
|
||||
var f = document.createElement('iframe');
|
||||
f.src = '//api.flattr.com/button/view/?uid={{ .Site.Params.flattr }}&button=compact&url={{ "/" | absURL }}&title={{ .Site.Title }}';
|
||||
f.title = 'Flattr';
|
||||
f.height = 20;
|
||||
f.width = 110;
|
||||
f.style.borderWidth = 0;
|
||||
s.parentNode.insertBefore(f, s);
|
||||
})('flattr');
|
||||
</script></p>
|
||||
{{ end }}
|
||||
|
||||
<p>Copyright © {{ .Now.Format "2006" }} <a href="{{ "/license/" | absURL }}">License</a><br/>
|
||||
Powered by <a href="http://gohugo.io">Hugo</a> and <a href="https://github.com/zyro/hyde-x">Hyde-X</a></p>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue