Reverted back to hyde-x theme and removed all meetup related content

This commit is contained in:
Salar Rahmanian 2018-02-18 00:25:45 -08:00
parent 1e44952695
commit 1a64efac69
293 changed files with 6963 additions and 3234 deletions

View file

@ -0,0 +1,14 @@
{{ partial "head.html" . }}
<div class="content container">
<ul class="posts">
{{ range .Data.Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a>
{{ if isset .Params "categories" }}
&middot;
{{ range .Params.categories }}<a class="label" href="{{ "/categories/" | absURL }}{{ . | urlize }}">{{ . }}</a>{{ end }}
{{ end }}</span>
&middot; <time>{{ .Date.Format "Jan 2, 2006" }}</time></li>
{{ end }}
</ul>
</div>
{{ partial "foot.html" . }}

View file

@ -0,0 +1,8 @@
{{ partial "head.html" . }}
<div class="content container">
<div class="post">
<h1 class="post-title">{{ .Title }}</h1>
{{ .Content }}
</div>
</div>
{{ partial "foot.html" . }}