mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-05 11:16:41 -07:00
Switched to SPF13 theme
This commit is contained in:
parent
dc8f68529f
commit
6425fec733
286 changed files with 3612 additions and 6951 deletions
40
layouts/partials/details.html
Normal file
40
layouts/partials/details.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
{{ $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="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>
|
||||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue