mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-24 02:18:11 +08:00
- Reduces the default width from 1600px to 1200px of the web page and reduce the size of various elements and text. This fixes the problem that I designed the website assuming everyone is viewing from the same 2560px wide screen as I used to design it, which is a bad assumption. Most websites are around the 1200px mark. - Removes the use of the EB Garamond font, replacing more headers with a bold Inter instead, leaving only Bona Nova for h1 headers at the tops of pages (except the home page, which might have further revamp soon). - Adds nice flavor graphics to a redesigned volunteer page. - Cleans up and organizes the Zola templating code and CSS style sheets. - Improves image carousel to fade out images when dragged past the start or end.
29 lines
453 B
Markdown
29 lines
453 B
Markdown
+++
|
|
title = "Blog"
|
|
template = "blog.html"
|
|
page_template = "article.html"
|
|
sort_by = "date"
|
|
generate_feed = true
|
|
+++
|
|
|
|
<section id="intro">
|
|
<div class="block">
|
|
|
|
# Blog
|
|
|
|
<div class="left-right-split">
|
|
|
|
Latest news and articles from the Graphite team.
|
|
|
|
<p class="feed">
|
|
<a href="/blog/rss.xml">
|
|
<img class="icon" src="https://static.graphite.rs/icons/feed.svg" alt="RSS" />
|
|
<span class="link arrow">RSS Feed</span>
|
|
</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|