mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-03 10:36:42 -07:00
Reverted back to hyde-x theme and removed all meetup related content
This commit is contained in:
parent
1e44952695
commit
1a64efac69
293 changed files with 6963 additions and 3234 deletions
|
@ -1,32 +0,0 @@
|
|||
{{ $baseurl := .Site.BaseURL }}
|
||||
<div>
|
||||
<section id="datecount">
|
||||
<h4 id="date"> {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
||||
<h5 id="wc"> {{ .FuzzyWordCount }} Words </h5>
|
||||
<h5 id="readtime"> Read in about {{ .ReadingTime }} Min </h5>
|
||||
</section>
|
||||
<ul id="categories">
|
||||
{{ range .Params.topics }}
|
||||
<li><a href="{{ $baseurl }}/topics/{{ . | urlize }}">{{ . }}</a> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<ul id="tags">
|
||||
{{ range .Params.tags }}
|
||||
<li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<section id="author">
|
||||
<h4>About the Author:</h4>
|
||||
<p>
|
||||
Salar Rahmanian has been developing software since the age of 11.
|
||||
He started his software engineering career as a C Programmer on
|
||||
Unix based platforms such as Sun Solaris, IBM AIX, HP-UX and Linux.
|
||||
His current interests are in developing scalable distributed
|
||||
systems using Scala and AKKA. He also enjoys development using
|
||||
Python.
|
||||
</p>
|
||||
</section>
|
||||
</div>
|
|
@ -1,4 +0,0 @@
|
|||
<aside id=comments>
|
||||
<div><h2> Comments </h2></div>
|
||||
{{ template "_internal/disqus.html" . }}
|
||||
</aside>
|
|
@ -1,27 +0,0 @@
|
|||
<footer>
|
||||
<div>
|
||||
<p>
|
||||
© 2010-17 <span itemprop="author" itemscope itemtype="https://schema.org/Person">
|
||||
<span itemprop="name">Salar Rahmanian.</span></span>
|
||||
<a href="https://creativecommons.org/licenses/by/3.0/" title="Creative Commons Attribution">Some rights reserved</a>;
|
||||
please attribute properly and link back. <br>
|
||||
<small>Powered by <a href="https://gohugo.io">Hugo</a></small>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
<script type="text/javascript">
|
||||
(function(){var j=function(a,b){return window.getComputedStyle?getComputedStyle(a).getPropertyValue(b):a.currentStyle[b]};var k=function(a,b,c){if(a.addEventListener)a.addEventListener(b,c,false);else a.attachEvent('on'+b,c)};var l=function(a,b){for(key in b)if(b.hasOwnProperty(key))a[key]=b[key];return a};window.fitText=function(d,e,f){var g=l({'minFontSize':-1/0,'maxFontSize':1/0},f);var h=function(a){var b=e||1;var c=function(){a.style.fontSize=Math.max(Math.min(a.clientWidth/(b*10),parseFloat(g.maxFontSize)),parseFloat(g.minFontSize))+'px'};c();k(window,'resize',c)};if(d.length)for(var i=0;i<d.length;i++)h(d[i]);else h(d);return d}})();
|
||||
fitText(document.getElementById('title'), 1)
|
||||
</script>
|
||||
<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','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-47014432-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
37
layouts/partials/head.html
Normal file
37
layouts/partials/head.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!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 }}">
|
||||
<link rel="stylesheet" href="{{ "/css/style.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" . }}
|
|
@ -1,3 +0,0 @@
|
|||
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed|Open+Sans:300' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="/static/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/static/css/salarstyle.css">
|
|
@ -1,16 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="no-js" lang="en-US" prefix="og: https://ogp.me/ns# fb: https://ogp.me/ns/fb#">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
{{ partial "meta.html" . }}
|
||||
|
||||
<base href="{{ .Site.BaseURL }}">
|
||||
<title> {{ .Title }} - softinio.com </title>
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
{{ if .RSSLink }}<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />{{ end }}
|
||||
|
||||
{{ partial "head_includes.html" . }}
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
</head>
|
|
@ -1,11 +0,0 @@
|
|||
{{ $baseurl := .Site.BaseURL }}
|
||||
|
||||
<aside id="meta">
|
||||
<div>
|
||||
{{ partial "meetup_details.html" . }}
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<meta itemprop="wordCount" content="{{ .WordCount }}">
|
||||
<meta itemprop="datePublished" content="{{ .Date.Format "2006-01-02" }}">
|
||||
<meta itemprop="url" content="{{ .Permalink }}">
|
|
@ -1,18 +0,0 @@
|
|||
{{ $baseurl := .Site.BaseURL }}
|
||||
<div>
|
||||
<section id="datecount">
|
||||
<h4 id="date"> {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
||||
<h5 id="wc"> {{ .FuzzyWordCount }} Words </h5>
|
||||
<h5 id="readtime"> Read in about {{ .ReadingTime }} Min </h5>
|
||||
<h5><a href={{ $.Params.meetup_url }}>Link: Scala DC June 2017 Meetup</a></h5>
|
||||
</section>
|
||||
<ul id="tags">
|
||||
{{ range .Params.tags }}
|
||||
<li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ partial "organizer.html" . }}
|
||||
</div>
|
|
@ -1,42 +0,0 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
{{with .Description }}<meta name="description" content="{{ . }}">{{end}}
|
||||
<meta name="keywords" content="{{ if .Keywords }}{{ range .Keywords }}{{ . }}, {{ end }}{{else if isset .Params "tags" }}{{ range .Params.tags }}{{ . }}, {{ end }}{{end}}">
|
||||
|
||||
<!-- open graph -->
|
||||
<meta property="og:type" content="article"/>
|
||||
<meta property="og:description" content="{{ .Description }}"/>
|
||||
<meta property="og:title" content="{{ .Title }} : softinio.com"/>
|
||||
<meta property="og:site_name" content="softinio is salar Rahmanian"/>
|
||||
<meta property="og:image" content="" />
|
||||
<meta property="og:image:type" content="image/jpeg" />
|
||||
<meta property="og:image:width" content="" />
|
||||
<meta property="og:image:height" content="" />
|
||||
<meta property="og:url" content="{{ .Permalink }}">
|
||||
<meta property="og:locale" content="en_US">
|
||||
<meta property="article:published_time" content="{{ .Date.Format "2006-01-02" }}"/>
|
||||
<meta property="article:modified_time" content="{{ .Date.Format "2006-01-02" }}"/>
|
||||
|
||||
|
||||
{{if .Keywords }}
|
||||
{{ range .Keywords }}<meta property="article:tag" content="{{ . }}">
|
||||
{{ end }}
|
||||
{{else if isset .Params "tags" }}
|
||||
{{ range .Params.tags }}<meta property="article:tag" content="{{ . }}">
|
||||
{{ end }}
|
||||
{{end}}
|
||||
|
||||
<!--Twitter Cards-->
|
||||
<meta name="twitter:card" content="summary">
|
||||
<!--<meta name="twitter:card" content="summary_large_image">-->
|
||||
<meta name="twitter:site" content="@SalarRahmanian">
|
||||
<meta name="twitter:title" content="{{ .Title }} : www.softinio.com">
|
||||
<meta name="twitter:creator" content="@SalarRahmanian">
|
||||
<meta name="twitter:description" content="{{ .Description }}">
|
||||
<meta name="twitter:image:src" content="">
|
||||
<meta name="twitter:domain" content="www.softinio.com">
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
{{ $baseurl := .Site.BaseURL }}
|
||||
|
||||
<aside id="meta">
|
||||
<div>
|
||||
{{ partial "details.html" . }}
|
||||
</div>
|
||||
<div>
|
||||
{{ partial "organizer.html" . }}
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<meta itemprop="wordCount" content="{{ .WordCount }}">
|
||||
<meta itemprop="datePublished" content="{{ .Date.Format "2006-01-02" }}">
|
||||
<meta itemprop="url" content="{{ .Permalink }}">
|
|
@ -1,20 +0,0 @@
|
|||
<ul id="mainnav">
|
||||
<li>
|
||||
<a href="/post/">
|
||||
<span class="icon"> <i aria-hidden="true" class="fa fa-pencil-square-o"></i></span>
|
||||
<span> blog </span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/page/salar-rahmanian/">
|
||||
<span class="icon"> <i aria-hidden="true" class="fa fa-user"></i></span>
|
||||
<span> me </span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/meetup/">
|
||||
<span class="icon"> <i aria-hidden="true" class="fa fa-meetup"></i></span>
|
||||
<span> Meetup </span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
|
@ -1,15 +0,0 @@
|
|||
<div>
|
||||
<h4>Organizer for the following meetups</h4>
|
||||
<ul>
|
||||
<li><a href="https://www.meetup.com/AngularJS-DC/">AngularJS DC</a></li>
|
||||
<li><a href="https://www.meetup.com/dc-scala/">Scala DC</a></li>
|
||||
<li><a href="https://www.meetup.com/Washington-DC-Elastic-Fantastics/">Elastic Washington DC</a></li>
|
||||
<li><a href="https://www.meetup.com/Tech_Fusion/">Tech Fusion</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4><a href="https://docs.google.com/a/softinio.com/forms/d/1UlUobRylGQEg90ADIoxt5mhNMdzl1lD0PT4pjYE2NYc/viewform?edit_requested=true">Want to speak at one of my meetups?</a></h4>
|
||||
</div>
|
||||
<div>
|
||||
<h4><a href="/page/sponsor-a-meetup/">Want to sponsor my meetups?</a></h4>
|
||||
</div>
|
50
layouts/partials/sidebar.html
Normal file
50
layouts/partials/sidebar.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<div class="sidebar">
|
||||
<div class="container sidebar-sticky">
|
||||
<div class="sidebar-about">
|
||||
<a href="{{ "/" | absURL }}"><img src="/img/{{ .Site.Params.myphoto }}?s=200" alt="gravatar" title="{{ .Site.Author.name }}"></a>
|
||||
<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" }}<br/>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a><br />This work by <span xmlns:cc="http://creativecommons.org/ns#" property="cc:attributionName">Salar Rahmanian</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
|
||||
Please attribute properly and link back. <br/>
|
||||
Powered by <a href="http://gohugo.io">Hugo</a></p>
|
||||
</div>
|
||||
</div>
|
|
@ -1,34 +0,0 @@
|
|||
<ul id="social">
|
||||
<li id="share">
|
||||
<span class="icon icon-bubbles"> </span>
|
||||
<span class="title"> share </span>
|
||||
<div class="dropdown share">
|
||||
<ul class="social">
|
||||
<li> <a href="https://twitter.com/intent/tweet?status={{ .Title }}-{{ .Permalink }}" target="_blank" title="Follow me on Twitter" class="twitter"><span class="icon icon-twitter"></span>Twitter</a> </li>
|
||||
<li> <a href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}" target="_blank" title="Join me on Facebook" class="facebook"><span class="icon icon-facebook"></span>Facebook</a> </li>
|
||||
<li> <a href="https://plus.google.com/share?url={{ .Permalink }}" target="_blank" title="Google+" class="googleplus"><span class="icon icon-google-plus"></span>Google+</a> </li>
|
||||
<li> <a href="https://www.linkedin.com/shareArticle?mini=true&url={{ .Permalink }}&title={{ .Title }}&source=softinio" target="_blank" title="LinkedIn" class="linkedin"><span class="icon icon-linkedin"></span>LinkedIn</a> </li>
|
||||
<li> <a href="https://www.reddit.com/submit?url={{ .Permalink }}" target="_blank" title="Reddit" class="reddit"><span class="icon icon-reddit"></span>Reddit</a> </li>
|
||||
</ul>
|
||||
<span class="subcount">sharing is caring</span>
|
||||
</div>
|
||||
</li>
|
||||
<li id="follow">
|
||||
<span class="icon icon-rocket"> </span>
|
||||
<span class="title"> follow </span>
|
||||
<div class="dropdown follow">
|
||||
<ul class="social">
|
||||
<!-- <li> <a href="https://feeds.feedburner.com/spf13" target="_blank" title="Subscribe by RSS" class="rss"><span class="icon icon-feed-2"></span>RSS</a> </li> -->
|
||||
<li> <a href="https://www.twitter.com/SalarRahmanian" target="_blank" title="Follow me on Twitter" class="twitter"><span class="icon icon-twitter"></span>Twitter</a> </li>
|
||||
<li> <a href="https://www.linkedin.com/in/salarrahmanian" target="_blank" title="LinkedIn" class="linkedin"><span class="icon icon-linkedin"></span>LinkedIn</a> </li>
|
||||
<li> <a href="https://plus.google.com/+SalarRahmanian" target="_blank" title="Google+" class="googleplus"><span class="icon icon-google-plus"></span>Google+</a> </li>
|
||||
<li> <a
|
||||
href="https://stackoverflow.com/users/story/1930869"
|
||||
target="_blank" title="Stackoverflow"
|
||||
class="googleplus"><span class="fa fa-stack-overflow"></span> Stackoverflow</a> </li>
|
||||
<li> <a href="https://github.com/softinio" target="_blank" title="GitHub" class="github"><span class="icon icon-github"></span>GitHub</a> </li>
|
||||
<!-- <li> <a href="https://slideshare.com/spf13" target="_blank" title="SlideShare" class="slideshare"><span class="icon icon-slideshare"></span>SlideShare</a> </li> -->
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
|
@ -1,10 +0,0 @@
|
|||
<header id="header">
|
||||
<a href="/" border=0 style="float: left;" id="logolink"><img
|
||||
src="/static/img/softinio.jpg"
|
||||
style="width:128px;height:128px"></a>
|
||||
<div id="byline">by Salar Rahmanian</div>
|
||||
<nav id="nav">
|
||||
{{ partial "nav.html" . }}
|
||||
{{ partial "social.html" . }}
|
||||
</nav>
|
||||
</header>
|
Loading…
Add table
Add a link
Reference in a new issue