Skip to content

Commit

Permalink
Remove readmore
Browse files Browse the repository at this point in the history
  • Loading branch information
bluevolvo87 committed Aug 4, 2024
1 parent 794f538 commit b2e2ece
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ markup:
tableOfContents:
startLevel: 1
endLevel: 2

2 changes: 1 addition & 1 deletion content/tasks.Rmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Tasks
date: 2024-07-17
draft: true
draft: false
---

A site about Taskmaster has got to have some tasks....surely?
Expand Down
4 changes: 2 additions & 2 deletions content/tasks.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Tasks
date: 2024-07-17
draft: true
draft: false
---


Expand All @@ -23,7 +23,7 @@ <h1>The Prize Task</h1>
<div id="the-individual-task" class="section level1">
<h1>The Individual Task</h1>
<p>In order to achieve the desired vision, multiple contributors would be
appreciated; as of 2024-07-18 it is just myself. The first step in
appreciated; as of 2024-08-03 it is just myself. The first step in
the road to this vision is to tell as many people about this project.</p>
<blockquote>
<p>Tell and redirect as many people as you can about The Median Duck
Expand Down
31 changes: 31 additions & 0 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
{{ partial "header.html" . }}
<body>
<div class="content">
{{ partial "head.html" . }}

<div class="article">
{{ .Content }}
</div>
</main>

<b><p>Latest Posts</p></b>

<main class="list">

{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{ $paginator := .Paginate (where $pages "Params.hidden" "ne" true) }}
{{ range $paginator.Pages }}
<section class="list-item">
<a href="{{ .RelPermalink }}">{{.Title}}</a>
<time>{{ dateFormat "2006-01-02" .Date }}{{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</time>
</section>
{{ end }}
{{ template "partials/paginator.html" . }}
</main>
{{ partial "footer.html" . }}
</div>

</body>
</html>

0 comments on commit b2e2ece

Please sign in to comment.