2026第一次上传

This commit is contained in:
2026-01-04 15:00:40 +08:00
parent 8373794f11
commit 24dc04287e
9 changed files with 130 additions and 122 deletions

View File

@@ -1,13 +1,16 @@
<html>
<head>
<!--meta http-equiv="refresh" content="2.0;url={{ url_for('blog.home') }}"-->
<title>关于</title>
<meta charset="utf-8" lang="zh-CN">
</head>
<body>
<a href="{{ url_for('blog.home') }}">返回首页</a>__<a href="{{ url_for('blog.sitemap') }}">网页地图</a>
<hr>
本站建立于大概2025年8月前后<br>
{# 引入base #}
{% extends 'blog/extension/base.html' %}
{# 引入标题 #}
{% block title %}关于{% endblock %}
{% include 'blog/include/head.html' %}
{% block content %}
{% include 'blog/include/navbar.html' %}
<br>
<a href="{{ url_for('blog.home') }}">返回首页</a>__<a href="{{ url_for('blog.sitemap') }}">网页地图</a>
<hr id="hr_2">
本站建立于大概2025年8月前后<br>
差不多是个人博客多次重建后的成果<br>
如今我已经成长很多<br>
<br>
@@ -15,17 +18,16 @@
<p>2025.12.22</p>
<br>
<br>
<hr>
<hr id="hr_2">
忘记写了
<br>
所以暂时就不写了
<p>2025.08.05</p>
<p>over</p>
</body>
</html>
<style>
a {
text-decoration: none;
#hr_2 {
border: 0.3px solid black;
}
</style>
</style>
{% endblock %}