roundabout,
created on Saturday, 20 April 2024, 12:56:56 (1713617816),
received on Monday, 29 April 2024, 06:47:46 (1714373266)
Author identity: vlad <vlad.muntoiu@gmail.com>
7d33c34ca72c8059365974c3166123c60c6ef93c
.idea/workspace.xml
@@ -4,8 +4,12 @@
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="b2c629ea-d173-4caf-b306-cbeaee617270" name="Changes" comment="Add ampoule docs">
<change beforePath="$PROJECT_DIR$/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/main.py" afterDir="false" />
<list default="true" id="b2c629ea-d173-4caf-b306-cbeaee617270" name="Changes" comment="Update ampoule docs">
<change afterPath="$PROJECT_DIR$/static/fonts/SOURCE CODE.md" afterDir="false" />
<change afterPath="$PROJECT_DIR$/static/fonts/SourceCodeVF-Italic.otf.woff2" afterDir="false" />
<change afterPath="$PROJECT_DIR$/static/fonts/SourceCodeVF-Upright.otf.woff2" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/static/style.css" beforeDir="false" afterPath="$PROJECT_DIR$/static/style.css" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -146,7 +150,15 @@
<option name="project" value="LOCAL" />
<updated>1713616448481</updated>
</task>
<option name="localTasksCounter" value="9" />
<task id="LOCAL-00009" summary="Update ampoule docs">
<option name="closed" value="true" />
<created>1713616922277</created>
<option name="number" value="00009" />
<option name="presentableId" value="LOCAL-00009" />
<option name="project" value="LOCAL" />
<updated>1713616922277</updated>
</task>
<option name="localTasksCounter" value="10" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@@ -169,6 +181,7 @@
<MESSAGE value="Remove None" />
<MESSAGE value="Update article" />
<MESSAGE value="Add ampoule docs" />
<option name="LAST_COMMIT_MESSAGE" value="Add ampoule docs" />
<MESSAGE value="Update ampoule docs" />
<option name="LAST_COMMIT_MESSAGE" value="Update ampoule docs" />
</component>
</project>
projects/ampoule.md
@@ -145,6 +145,7 @@ fact it can only do blogs. It also can't be portable and implemented in Flask.
### Why even use a static site generator?
You've got two other options. Let's examine them.
#### Dynamic sites
* bloated;
* slow;
@@ -156,6 +157,7 @@ You've got two other options. Let's examine them.
* databases can't be managed with git;
* hard to import content;
* no free hosting;
#### Static sites
* hard to manage layouts;
* hard to list the content;
static/fonts/SOURCE CODE.md
static/fonts/SourceCodeVF-Italic.otf.woff2
static/fonts/SourceCodeVF-Upright.otf.woff2
static/style.css
@@ -34,6 +34,17 @@
font-style: italic;
}
@font-face {
font-family: "Source Code";
src: url("/static/fonts/SourceCodeVF-Upright.otf.woff2") format("woff2-variations");
}
@font-face {
font-family: "Source Code";
src: url("/static/fonts/SourceCodeVF-Italic.otf.woff2") format("woff2-variations");
font-style: italic;
}
body {
line-height: 1.5rem;
font-family: "Source Serif", serif;
@@ -184,4 +195,18 @@ h6 {
#mail-link {
color: #009688;
text-transform: none;
}
}
pre, code, kbd, samp, var {
font-family: "Source Code", monospace;
}
pre {
overflow-x: auto;
padding: 1rem;
background: #263238;
color: #ffffff;
color-scheme: dark;
font-size: 1rem;
line-height: 1.25rem;
}