songs2slides

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

commit 444f50547dcc86bc7b72323c6a8d59219aba285c
parent eeb8a38289cbcd27f7b799bc24bacdcf5f640dc7
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Fri,  1 Mar 2024 18:40:33 -0800

Add icons

Diffstat:
Asongs2slides/static/icon-16.png | 0
Asongs2slides/static/icon-180.png | 0
Asongs2slides/static/icon-32.png | 0
Asongs2slides/static/icon.svg | 73+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Msongs2slides/templates/layout.html | 3+++
5 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/songs2slides/static/icon-16.png b/songs2slides/static/icon-16.png Binary files differ. diff --git a/songs2slides/static/icon-180.png b/songs2slides/static/icon-180.png Binary files differ. diff --git a/songs2slides/static/icon-32.png b/songs2slides/static/icon-32.png Binary files differ. diff --git a/songs2slides/static/icon.svg b/songs2slides/static/icon.svg @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + width="256" + height="256" + viewBox="0 0 67.733332 67.733333" + version="1.1" + id="svg1" + xml:space="preserve" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)" + sodipodi:docname="icon.svg" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview + id="namedview1" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + inkscape:document-units="mm" + inkscape:zoom="1.6819304" + inkscape:cx="85.615908" + inkscape:cy="77.589417" + inkscape:window-width="1884" + inkscape:window-height="1009" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:current-layer="svg1" /><defs + id="defs1" /><rect + style="fill:#ffff50;fill-opacity:1;stroke:#000000;stroke-width:2.5131;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + id="rect3" + width="36.645321" + height="36.645321" + x="25.598217" + y="5.4898834" + rx="4.2333331" + ry="4.2333331" + inkscape:label="slide-3" /><rect + style="fill:#ffff50;fill-opacity:1;stroke:#000000;stroke-width:2.5131;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + id="rect2" + width="36.645321" + height="36.645321" + x="15.54405" + y="15.54405" + rx="4.2333331" + ry="4.2333331" + inkscape:label="slide-2" /><rect + style="fill:#ffff50;fill-opacity:1;stroke:#000000;stroke-width:2.5131;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + id="rect1" + width="36.645321" + height="36.645321" + x="5.4898834" + y="25.598217" + rx="4.2333331" + ry="4.2333331" + inkscape:label="slide-1" /><text + xml:space="preserve" + style="font-size:39.511px;line-height:1;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;text-decoration-color:#000000;word-spacing:0px;text-anchor:middle;white-space:pre;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.117;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + x="23.276875" + y="58.275337" + id="text1" + inkscape:label="text"><tspan + sodipodi:role="line" + id="tspan1" + style="font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.117" + x="23.276875" + y="58.275337">S</tspan></text></svg> diff --git a/songs2slides/templates/layout.html b/songs2slides/templates/layout.html @@ -3,6 +3,9 @@ <head> <title>SongsSlides</title> <meta name="description" content="Automatically creates lyric slide shows from a list of songs"> + <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') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='global.css') }}"/> {% block head %}{% endblock %}