2019-12-06 20:03:37 -08:00
|
|
|
{{- template "page_header.html" .}}
|
2013-05-10 17:54:10 -07:00
|
|
|
<div id="top-pane">
|
2022-12-22 12:58:18 -08:00
|
|
|
<span id="site-title">{{.siteConfig.SiteName}}</span><br />
|
|
|
|
<span id="site-slogan">{{.siteConfig.SiteSlogan}}</span>
|
2019-02-16 19:18:00 -08:00
|
|
|
</div><br />
|
|
|
|
<div id="frontpage">
|
|
|
|
<div class="section-block" style="margin: 16px 64px 16px 64px;">
|
2020-03-09 13:26:46 -07:00
|
|
|
<div class="section-body front-intro">
|
2019-02-16 19:18:00 -08:00
|
|
|
{{template "front_intro.html" .}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="section-block">
|
|
|
|
<div class="section-title-block"><b>Boards</b></div>
|
|
|
|
<div class="section-body">
|
2019-12-06 20:03:37 -08:00
|
|
|
{{- range $_, $section := .sections -}}
|
|
|
|
{{if not $section.Hidden}}
|
|
|
|
<ul style="float:left; list-style: none">
|
|
|
|
<li style="text-align: center; font-weight: bold"><b><u>{{$section.Name}}</u></b></li>
|
|
|
|
{{range $_, $board := $.boards}}
|
2022-12-22 12:58:18 -08:00
|
|
|
{{if and (eq $board.SectionID $section.ID) (ne $board.Dir $.siteConfig.Modboard)}}
|
2023-12-07 12:11:58 -08:00
|
|
|
<li><a href="{{webPathDir $board.Dir}}" title="{{$board.Description}}">/{{$board.Dir}}/</a> — {{$board.Title}}</li>
|
2019-12-06 20:03:37 -08:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2019-02-16 19:18:00 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-22 12:58:18 -08:00
|
|
|
{{- if gt .siteConfig.MaxRecentPosts 0}}
|
2019-02-16 19:18:00 -08:00
|
|
|
<div class="section-block">
|
|
|
|
<div class="section-title-block"><b>Recent Posts</b></div>
|
|
|
|
<div class="section-body">
|
|
|
|
<div id="recent-posts">
|
2022-12-22 12:58:18 -08:00
|
|
|
{{- range $i, $post := $.recentPosts}}
|
2019-02-16 19:18:00 -08:00
|
|
|
<div class="recent-post">
|
2022-12-21 15:34:22 -08:00
|
|
|
{{if and (not $post.FileDeleted) (ne $post.Filename "") -}}
|
2022-11-21 17:05:48 -08:00
|
|
|
<a href="{{$post.URL}}" class="front-reply" target="_blank"><img src="{{$post.ThumbURL}}" alt="post thumbnail"/></a><br />
|
2019-12-06 20:03:37 -08:00
|
|
|
{{else}}
|
2022-11-21 17:05:48 -08:00
|
|
|
<div class="file-deleted-box" style="text-align:center; float:none;"><a href="{{$post.URL}}" class="front-reply" target="_blank">No file</a></div>
|
2019-12-06 20:03:37 -08:00
|
|
|
{{- end}}<br />
|
2023-12-07 12:11:58 -08:00
|
|
|
<a href="{{webPathDir $post.Board}}">/{{$post.Board}}/</a><hr />
|
2022-11-21 17:05:48 -08:00
|
|
|
{{$post.MessageSample}}
|
2019-12-06 20:03:37 -08:00
|
|
|
</div>{{end}}
|
|
|
|
</div>
|
|
|
|
</div>{{end}}
|
|
|
|
</div>
|
2013-05-10 17:54:10 -07:00
|
|
|
</div>
|
2019-11-29 15:08:18 -08:00
|
|
|
{{template "page_footer.html" .}}
|