songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit a1f53beefac12a5fea0355fa53b6b5648f5554d0
parent a18946380db569e8fcf7b138ee2d6b827e5f0e09
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Sat, 20 Apr 2024 09:36:49 -0700

Fix Open Graph url

Diffstat:
Msongs2slides/templates/base.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/songs2slides/templates/base.html b/songs2slides/templates/base.html @@ -9,7 +9,7 @@ <meta property="og:title" content="Songs2Slides"/> <meta property="og:description" content="An easy-to-use tool that automatically finds song lyrics and creates lyric slideshows"/> <meta property="og:type" content="website"/> - <meta property="og:url" content="{{ url_for('.home', _external=True) }}"/> + <meta property="og:url" content="{{ url_for('main.home', _external=True) }}"/> <meta property="og:image" content="{{ url_for('static', filename='open-graph.png', _external=True) }}"/> <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='icon-32.png') }}"/>