mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
- Changed the main background color - Added a quote background color - Changed the color of the citation in bold - Added a background image to the body that repeats - Increased the maximum width of the body - Made layout adjustments for mobile phones - Added padding to blockquotes and made visual enhancement with quotes - Adjusted the footer style - Fixed an issue with the weight attribute of the feed icon img, it should be height - Added a content div to wrap main body content - Appended a version parameter to the css file in html to force browser cache refresh - Updated menu and category descriptions in the website configuration file - Updated styling of blockquote element and added open-end quotes - Added new image file white-waves.webp and integrated it to the background design - Tweaked the main body's max-width and font-size for better accessibility and readability on mobile devices - Optimized placements for blockquote contents - Adjusted fontSize of blockquote's open-quote and close-quote - Updated categories description in pelicanconf.py file - Removed unnecessary padding-right from 'time' style
43 lines
No EOL
1.3 KiB
HTML
43 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}?v2" type="text/css" />
|
|
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate"
|
|
title="{{ SITENAME }} ATOM Feed" />
|
|
{% if FEED_RSS %}
|
|
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/atom+xml" rel="alternate"
|
|
title="{{ SITENAME }} RSS Feed" />
|
|
{% endif %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">
|
|
<section id="links">
|
|
<ul>
|
|
{% for (title, url, selected) in MENU %}
|
|
{% if loop.first %}
|
|
<li><a class="main" href="/">{{ SITENAME }}</a></li>
|
|
{% endif %}
|
|
<li><a class="{%
|
|
if page_name == selected
|
|
or (category and category.name == selected)
|
|
or (page and page.slug == selected)
|
|
%}selected{% endif %}"
|
|
href="{{SITEURL}}{{ url }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% include 'github.html' %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
<footer>
|
|
<a id="feed" href="/feeds/all.atom.xml"><img src="/theme/rss.svg" /></a>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |