roundabout,
created on Saturday, 20 April 2024, 15:13:53 (1713626033),
received on Monday, 29 April 2024, 06:47:46 (1714373266)
Author identity: vlad <vlad.muntoiu@gmail.com>
47a38e88c693b4713cfefa618fa027c389c254f9
.idea/workspace.xml
@@ -4,11 +4,12 @@
<option name="autoReloadType" value="SELECTIVE" /> </component> <component name="ChangeListManager"> <list default="true" id="b2c629ea-d173-4caf-b306-cbeaee617270" name="Changes" comment="More"><change afterPath="$PROJECT_DIR$/projects/roundabout.md" afterDir="false" /><list default="true" id="b2c629ea-d173-4caf-b306-cbeaee617270" name="Changes" comment="Roundabout article"><change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/main.py" afterDir="false" /><change beforePath="$PROJECT_DIR$/templates/projects.html" beforeDir="false" afterPath="$PROJECT_DIR$/templates/projects.html" afterDir="false" /><change beforePath="$PROJECT_DIR$/projects/ampoule.md" beforeDir="false" afterPath="$PROJECT_DIR$/projects/ampoule.md" afterDir="false" /> <change beforePath="$PROJECT_DIR$/projects/roundabout.md" beforeDir="false" afterPath="$PROJECT_DIR$/projects/roundabout.md" afterDir="false" /> <change beforePath="$PROJECT_DIR$/static/style.css" beforeDir="false" afterPath="$PROJECT_DIR$/static/style.css" afterDir="false" /> <change beforePath="$PROJECT_DIR$/templates/project.html" beforeDir="false" afterPath="$PROJECT_DIR$/templates/project.html" afterDir="false" /></list> <option name="SHOW_DIALOG" value="false" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -165,7 +166,15 @@
<option name="project" value="LOCAL" /> <updated>1713617816187</updated> </task> <option name="localTasksCounter" value="11" /><task id="LOCAL-00011" summary="Roundabout article"> <option name="closed" value="true" /> <created>1713620407143</created> <option name="number" value="00011" /> <option name="presentableId" value="LOCAL-00011" /> <option name="project" value="LOCAL" /> <updated>1713620407143</updated> </task> <option name="localTasksCounter" value="12" /><servers /> </component> <component name="Vcs.Log.Tabs.Properties">
@@ -190,6 +199,7 @@
<MESSAGE value="Add ampoule docs" /> <MESSAGE value="Update ampoule docs" /> <MESSAGE value="More" /> <option name="LAST_COMMIT_MESSAGE" value="More" /><MESSAGE value="Roundabout article" /> <option name="LAST_COMMIT_MESSAGE" value="Roundabout article" /></component> </project>
projects/ampoule.md
@@ -1,5 +1,6 @@
--- title: Ampoule source-url: https://roundabout-host.com/roundabout/ampoule--- Ampoule is a lightweight, simple yet flexible, static site generator written in Python.
projects/roundabout.md
@@ -1,5 +1,6 @@
--- title: The roundabout source-url: https://roundabout-host.com/roundabout/roundabout--- The roundabout is a **git repository hosting** server software. It is designed to be a complete
static/style.css
@@ -210,3 +210,39 @@ pre {
font-size: 1rem; line-height: 1.25rem; } .project-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; border: none; } .project-title > span { padding: 0.5rem; } .project-title > a { text-decoration: none; background: #009688; color: #ffffff; padding: 0 1rem; border: 4px solid #00796B; box-sizing: border-box; line-height: 1.25em; font-size: 0.875em; font-family: "Romanian League Gothic Condensed", sans-serif; align-self: stretch; display: flex; align-items: center; justify-content: center; min-width: 25%; transition: 400ms; } .project-title > a:hover { border-width: 8px; }
templates/project.html
@@ -3,7 +3,10 @@
{{ document["title"] }} {% endblock %} {% block content %} <h1>{{ document["title"] }}</h1><h1 class="project-title"> <span>{{ document["title"] }}</span> <a href="{{ document['source-url'] }}">Repository</a> </h1><article class="content-area"> {{ document.content | markdown }} </article>