songs2slides

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

commit 9886598e21b902463cc87a841004b854611c6a37
parent 64a761a4afb401ec4c359d01e5134b6dc3644b19
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Mon,  8 Apr 2024 18:58:20 -0700

Use consistent description and terminology

Diffstat:
MREADME.md | 2+-
Msongs2slides/static/home.css | 5+++++
Msongs2slides/templates/create-step-1.html | 2+-
Msongs2slides/templates/home.html | 2+-
Msongs2slides/templates/layout.html | 2+-
5 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -1,5 +1,5 @@ # Songs2Slides -Creates a lyrics slideshow from a list of songs +An easy-to-use tool that automatically finds song lyrics and creates lyric slideshows ## Setup 1. Install python dependencies diff --git a/songs2slides/static/home.css b/songs2slides/static/home.css @@ -7,6 +7,11 @@ h1 { margin-bottom: 0.5rem; font-size: 2rem; } +p { + max-width: 450px; + margin-left: auto; + margin-right: auto; +} a.primary { padding: 0.5rem 1rem; } diff --git a/songs2slides/templates/create-step-1.html b/songs2slides/templates/create-step-1.html @@ -10,7 +10,7 @@ <h1>Step 1: Select Songs</h1> <p> - Select the songs to include in the slide show by their title and artist. + Select the songs to include in the slideshow by their title and artist. </p> <template id="row-template"> diff --git a/songs2slides/templates/home.html b/songs2slides/templates/home.html @@ -8,7 +8,7 @@ <h1>Simplify lyric slideshow creation</h1> <p> Songs2Slides is a easy-to-use tool that automatically finds song lyrics and - creates beautiful lyric slideshows. + creates lyric slideshows. </p> <p> <a class="button primary" href="{{ url_for('.create_step_1') }} "> diff --git a/songs2slides/templates/layout.html b/songs2slides/templates/layout.html @@ -4,7 +4,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SongsSlides</title> - <meta name="description" content="Automatically creates lyric slideshows from a list of songs"> + <meta name="description" content="An easy-to-use tool that automatically finds song lyrics and creates lyric slideshows"> <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='icon-32.png') }}"> <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='icon-32.png') }}"> <link rel="apple-touch-icon" href="{{ url_for('static', filename='icon-180.png') }}">