Fix source code link

Capitalize the `S` in `Scribe`. I don't have record of this ever
needing to be capitalized before, but it clearly does not work.
This commit is contained in:
Edward Loveall 2022-07-17 11:30:03 -04:00
parent f05a12a880
commit 740230d451
No known key found for this signature in database
GPG Key ID: A7606DFEC2BA731F
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2022-07-17
* Fix source code link
2022-05-21
* Show error page for missing posts

View File

@ -4,7 +4,7 @@ class Shared::LayoutFooter < BaseComponent
footer do
para do
span do
a "Source code", href: "https://sr.ht/~edwardloveall/scribe"
a "Source code", href: "https://sr.ht/~edwardloveall/Scribe"
end
span do
text "Version: #{Scribe::VERSION}"

View File

@ -1,3 +1,3 @@
module Scribe
VERSION = "2022-06-17"
VERSION = "2022-07-17"
end