Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change email and update some views. #11

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,13 @@
- [x] SQLite file creation if it doesn't exist.
- [x] SQLite file migration if it isn't already done.
- [x] Cross compile for Linux w/SQLite3?
- [ ] Will need to run migrations later on - how do we do that? bin/ff migrate?
- [x] Deploy to domain name? massmurdercanada.org
- [x] Put Behind Cloudflare?
- [x] Will need to run migrations later on - how do we do that? bin/ff migrate?
- [x] SQLite stream to storage?
- [x] Integrate News Stories with Web downloading.
- [ ] Get CRUD working for Record
- [ ] Get CRUD working for NewsStory
- [ ] Integrate News Stories with AI Summaries.
- [ ] Need some additional JWT work: actually check the claims - how to get them generated and asssigned to me?
- [ ] Postgres Implementation of Record
Expand All @@ -71,11 +75,7 @@
- [ ] Do I need to add some contexts to track requests?
- [ ] Add /healthz which tests for health of DB?
- [ ] Some sort of Analytics
- [ ] Deploy to domain name?
- [ ] Put Behind Cloudflare?
- [ ] Integrate StatsCan homicide records.
- [ ] Get CRUD working for Record
- [ ] Get CRUD working for NewsStory
- [ ] Add Feature Flag Interface - use in-memory / augmented by written file - https://openfeature.dev/ - https://github.com/open-feature/flagd
- [ ] Better Groups/Tags interface.
- [ ] Make it actually be organized/designed?
Expand Down
6 changes: 3 additions & 3 deletions views/footer.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{{define "footer"}}
<footer>
<hr/>
<p>Something missing or wrong? Please send an email to <a href="mailto:darron@froese.org">darron@froese.org</a></p>
<p>Something missing or wrong? Please send an email to <a href="mailto:darron@massmurdercanada.org">darron@massmurdercanada.org</a></p>
<p>
Copyright &copy; 2023 Firearms Facts
Copyright &copy; 2023 Mass Murder Canada
</p>
<p>
Contact: <a href="mailto:darron@froese.org">darron@froese.org</a>.
Contact: <a href="mailto:darron@massmurdercanada.org">darron@massmurdercanada.org</a>.
</p>
</footer>
{{end}}
4 changes: 2 additions & 2 deletions views/record.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{{define "record"}}<html>
<head>
<title>🇨🇦 Multiple Murders: {{.Name}} in {{.City}} in {{.Date}}</title>
<title>🇨🇦 Murders: {{.Name}} in {{.City}} in {{.Date}}</title>
{{template "meta"}}
</head>
<body style="margin:10px;">
<h1><a href="/">🇨🇦 Multiple Murders</a></h1>
<h1><a href="/">Mass Murder 🇨🇦</a></h1>
{{template "groups"}}
<h2>{{.Name}} in {{.City}} in {{.Date}}</h2>
<table class="sortable">
Expand Down
4 changes: 2 additions & 2 deletions views/root.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{{define "records"}}<html>
<head>
<title>🇨🇦 Multiple Murders</title>
<title>Mass Murder 🇨🇦</title>
{{template "meta"}}
</head>
<body style="margin:10px;">
<h1>🇨🇦 Multiple Murders</h1>
<h1>Mass Murder 🇨🇦</h1>
{{template "groups"}}
<h2>Events: {{ len . -}}</h2>
<table class="sortable">
Expand Down