From: Chris Fulljames Date: Sun, 6 Apr 2025 16:18:37 +0000 (-0400) Subject: Add about, minor tweaks X-Git-Url: https://littlesong.place/gitweb/?a=commitdiff_plain;h=7c43a101627ac4268429ba5b4979a8188510d29d;p=littlesongplace.git Add about, minor tweaks --- diff --git a/src/littlesongplace/__init__.py b/src/littlesongplace/__init__.py index f63eb4a..29fa020 100644 --- a/src/littlesongplace/__init__.py +++ b/src/littlesongplace/__init__.py @@ -69,6 +69,10 @@ def index(): def site_news(): return render_template("news.html") +@app.get("/about") +def about(): + return render_template("about.html") + def get_gif_data(): # Convert all .gifs to base64 strings and embed them as dataset entries # in
s. This is used by nav.js:customImage() - it replaces specific diff --git a/src/littlesongplace/templates/about.html b/src/littlesongplace/templates/about.html new file mode 100644 index 0000000..a4d3194 --- /dev/null +++ b/src/littlesongplace/templates/about.html @@ -0,0 +1,52 @@ +{% extends "base.html" %} + +{% block title %}About{% endblock %} + +{% block body %} + +

About littlesong.place

+ +

+Hello there, I'm cfull. Thanks for stopping by! +

+ +

+This site is meant to be a little place for your songs. Of course, there are +already lots of big places for songs out there. But I wanted +somewhere to share music that was free from algorithms, ads, rankings, and the +general noise that comes with most of those big places. A place that +encourages and celebrates creativity, and a place for community with other +humans. If any of that resonates with you, then welcome! I hope you enjoy +your stay. +

+ +

+I also love Dreams, and the music community +that formed there. But now that live service support for Dreams has ended, and +given the uncertain future of Media Molecule and the games industry more +broadly, I worry that it's only a matter of time before the servers shut down +for good. Part of my goal with this site is to give others a place to archive +their music from Dreams. But beyond that, I hope it can also eventually become +a similar platform for creativity and community of its own - albeit on a much +smaller scale. +

+ +

+The site is open source! You can +view it on GitHub. +

+ +

Contact Me!

+ +

+I'm always looking for new ways to improve the site! If you have ideas (or if +you encounter a bug), there are a few ways you can get in touch: +

+

+ +{% endblock %} diff --git a/src/littlesongplace/templates/base.html b/src/littlesongplace/templates/base.html index 95f1356..a307593 100644 --- a/src/littlesongplace/templates/base.html +++ b/src/littlesongplace/templates/base.html @@ -27,8 +27,9 @@