mirror of
https://github.com/softinio/softinio.com.git
synced 2025-08-31 17:26:42 -07:00
added meetup section & theme corrections
This commit is contained in:
parent
91300e29a6
commit
21c571749c
49 changed files with 8780 additions and 48 deletions
18
layouts/meetup/single.html
Normal file
18
layouts/meetup/single.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
{{ partial "header.html" . }}
|
||||
<body lang="en" itemscope itemtype="http://schema.org/Article">
|
||||
{{ partial "subheader.html" . }}
|
||||
{{ $baseurl := .Site.BaseURL }}
|
||||
|
||||
<section id="main">
|
||||
<h1 itemprop="name" id="title">{{ .Title }}</h1>
|
||||
<div>
|
||||
<article itemprop="articleBody" id="content">
|
||||
{{ .Content }}
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{ partial "meta_aside.html" . }}
|
||||
|
||||
{{ partial "disqus.html" . }}
|
||||
{{ partial "footer.html" . }}
|
|
@ -17,14 +17,6 @@
|
|||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<section id="prev">
|
||||
{{if .Prev}}<a class="previous" href="{{.Prev.Permalink}}"><i class="icon-arrow-left"></i> {{.Prev.Title}}</a><br>{{end}}
|
||||
</section><section id="next">
|
||||
{{if .Next}}<a class="next" href="{{.Next.Permalink}}">{{.Next.Title}} <i class="icon-arrow-right"></i></a>{{end}}
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<section id="author">
|
||||
<h4>About the Author:</h4>
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
<link href='http://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/style.css">
|
||||
|
|
|
@ -23,4 +23,10 @@
|
|||
<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>
|
||||
|
|
|
@ -8,9 +8,7 @@
|
|||
<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="http://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="http://del.icio.us/post?url={{ .Permalink }}" target="_blank" title="Delicious" class="delicious"><span class="icon icon-delicious"></span>Delicious</a> </li>
|
||||
<li> <a href="http://www.reddit.com/submit?url={{ .Permalink }}" target="_blank" title="Reddit" class="reddit"><span class="icon icon-reddit"></span>Reddit</a> </li>
|
||||
<li> <a href="http://www.stumbleupon.com/submit?url={{ .Permalink }}" target="_blank" title="StumbleUpon" class="stumbleupon"><span class="icon icon-stumbleupon"></span>StumbleUpon</a> </li>
|
||||
</ul>
|
||||
<span class="subcount">sharing is caring</span>
|
||||
</div>
|
||||
|
|
25
layouts/section/meetup.html
Normal file
25
layouts/section/meetup.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{{ partial "header.html" . }}
|
||||
<body lang="en">
|
||||
{{ partial "subheader.html" . }}
|
||||
|
||||
<section id="main">
|
||||
<div>
|
||||
<h1 id="title">{{ .Title }}</h1>
|
||||
<ul id="list">
|
||||
{{ range .Data.Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<aside id="meta">
|
||||
<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>
|
||||
</aside>
|
||||
{{ partial "footer.html" . }}
|
Loading…
Add table
Add a link
Reference in a new issue