Skip to content

Commit

Permalink
Add disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
subdavis committed Sep 2, 2024
1 parent 406aace commit e771613
Show file tree
Hide file tree
Showing 10 changed files with 109 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Administration & Enterprise Oversight Committee"
date = 2024-08-19
generated = true
[params]
author = "Claude.ai"
+++
Expand Down
1 change: 1 addition & 0 deletions blog/content/posts/budget-committee-2024-08-12.md
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"
+++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Business, Housing & Zoning Committee"
date = 2024-08-20
generated = true
[params]
author = "Claude.ai"
+++
Expand Down
1 change: 1 addition & 0 deletions blog/content/posts/city-council-2024-08-15.md
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"
+++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Climate & Infrastructure Committee"
date = 2024-08-08
generated = true
[params]
author = "Claude.ai"
+++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Climate & Infrastructure Committee"
date = 2024-08-22
generated = true
[params]
author = "Claude.ai"
+++
Expand Down
1 change: 1 addition & 0 deletions blog/content/posts/committee-of-the-whole-2024-08-12.md
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"
+++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Public Health & Safety Committee"
date = 2024-08-21
generated = true
[params]
author = "Claude.ai"
+++
Expand Down
100 changes: 100 additions & 0 deletions blog/layouts/_default/single.html
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" }}
&nbsp; · &nbsp;
{{ .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 }}
1 change: 1 addition & 0 deletions lims_utils/transcript.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def formatSummaryForHugo(meeting, summary_text):
documentHeader = "+++" \
f"\ntitle = \"{committeeName}\"" \
f"\ndate = {meetingTime.date()}" \
"\n generated = true" \
f"\n[params]" \
f"\n author = \"Claude.ai\"" \
"\n+++\n\n"
Expand Down

0 comments on commit e771613

Please sign in to comment.