songs2slides

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

commit 57a7d4af0d88dff2f173fd109fe1be48700ae133
parent b74102c27ef21f7749cbb1b4d33e733295137a2e
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Sat,  4 Jul 2020 10:27:27 -0700

Add favicon.

Diffstat:
ASongs2Slides/static/favicon-32.png | 0
MSongs2Slides/templates/home.html | 1+
2 files changed, 1 insertion(+), 0 deletions(-)

diff --git a/Songs2Slides/static/favicon-32.png b/Songs2Slides/static/favicon-32.png Binary files differ. diff --git a/Songs2Slides/templates/home.html b/Songs2Slides/templates/home.html @@ -4,6 +4,7 @@ <title>Songs2Slides</title> <meta name="description" content="Quickly and easily create lyric powerpoints from a list of songs."> <meta name="viewport" content="width=device-width, user-scalable=no"/> + <link rel="icon" type="image/png" href="{{ url_for('static', filename='favicon-32.png') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='global.css') }}"></link> <link rel="stylesheet" href="{{ url_for('static', filename='home.css') }}"></link> <script src="{{ url_for('static', filename='home.js') }}"></script>