-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
blog/content/posts/administration-and-enterprise-oversight-committee-2024-08-19.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
+++ | ||
title = "Budget Committee" | ||
date = 2024-08-12 | ||
generated = true | ||
[params] | ||
author = "Claude.ai" | ||
+++ | ||
|
1 change: 1 addition & 0 deletions
1
blog/content/posts/business-housing-and-zoning-committee-2024-08-20.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
+++ | ||
title = "City Council" | ||
date = 2024-08-15 | ||
generated = true | ||
[params] | ||
author = "Claude.ai" | ||
+++ | ||
|
1 change: 1 addition & 0 deletions
1
blog/content/posts/climate-and-infrastructure-committee-2024-08-08.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
blog/content/posts/climate-and-infrastructure-committee-2024-08-22.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
+++ | ||
title = "Committee of the Whole" | ||
date = 2024-08-12 | ||
generated = true | ||
[params] | ||
author = "Claude.ai" | ||
+++ | ||
|
1 change: 1 addition & 0 deletions
1
blog/content/posts/public-health-and-safety-committee-2024-08-21.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
{{ define "main" }} | ||
|
||
{{/* Breadcrumbs */}} | ||
|
||
{{ if not .IsHome }} | ||
{{ partial "breadcrumbs.html" . }} | ||
{{ end }} | ||
|
||
<div {{ if .Param "autonumber" }} class="autonumber" {{ end }}> | ||
|
||
<div class="single-intro-container"> | ||
|
||
{{/* Title and Summary */}} | ||
|
||
<h1 class="single-title">{{ .Title }}</h1> | ||
{{ with .Param "summary" }} | ||
<p class="single-summary">{{ . }}</p> | ||
{{ end }} | ||
|
||
{{/* Reading Time */}} | ||
|
||
<p class="single-readtime"> | ||
{{ with .Date }} | ||
{{ $dateMachine := . | time.Format "2006-01-02T15:04:05-07:00" }} | ||
{{ $dateHuman := . | time.Format ":date_long" }} | ||
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time> | ||
{{end}} | ||
|
||
{{ if .Param "readTime" }} | ||
· | ||
{{ .ReadingTime }} min read | ||
{{end }} | ||
</p> | ||
|
||
</div> | ||
|
||
{{ if .Param "showTags" }} | ||
|
||
{{ $taxonomy := "tags" }} | ||
{{ with .Param $taxonomy }} | ||
|
||
<div class="single-tags"> | ||
{{ range $index, $tag := . }} | ||
{{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}} | ||
<span> | ||
<a href="{{ .Permalink }}">#{{ .LinkTitle }}</a> | ||
</span> | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
|
||
{{ end }} | ||
{{ end }} | ||
|
||
{{ if .Param "generated" }} | ||
<div style="background-color: #ffeea3; border-radius: 5px; font-size: 14px;"> | ||
<p style="padding:6px;"> | ||
This summary was created by generative AI from video transcripts and could contain mistakes. | ||
<a href="/about">Read more.</a> | ||
</p> | ||
</div> | ||
{{ end }} | ||
|
||
{{/* Table of Content */}} | ||
|
||
{{ if .Param "toc" }} | ||
<aside class="toc"> | ||
<p><strong>Table of contents</strong></p> | ||
{{ .TableOfContents }} | ||
</aside> | ||
{{ end }} | ||
|
||
{{/* Page content */}} | ||
|
||
<div class="single-content"> | ||
{{ .Content }} | ||
{{ if .Site.Params.giscus.enable }} | ||
{{ partial "comments.html" . }} | ||
{{ end }} | ||
</div> | ||
|
||
{{/* Next prev controls */}} | ||
|
||
{{ if not (.Param "hidePagination") }} | ||
{{ partial "pagination-single.html" . }} | ||
{{ end }} | ||
|
||
{{/* Back to top */}} | ||
|
||
{{ if not (.Param "hideBackToTop") }} | ||
<div class="back-to-top"> | ||
<a href="#top"> | ||
back to top | ||
</a> | ||
</div> | ||
{{ end }} | ||
|
||
</div> | ||
|
||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters