38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ article.title }} - 猎狐企服</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/navigation.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/article.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/footer.css') }}">
|
|
</head>
|
|
<body>
|
|
<!-- 导航栏 -->
|
|
{% include 'includes/header.html' %}
|
|
|
|
<!-- 文章内容 -->
|
|
<article class="article-container">
|
|
<div class="container">
|
|
<div class="article-header">
|
|
<h1 class="article-title">{{ article.title }}</h1>
|
|
<div class="article-meta">
|
|
<span>发布时间:{{ article.created_at.strftime('%Y-%m-%d %H:%M') }}</span>
|
|
<span>更新时间:{{ article.updated_at.strftime('%Y-%m-%d %H:%M') }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="article-content">
|
|
{{ article.content|safe }}
|
|
</div>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- 页脚 -->
|
|
{% include 'includes/footer.html' %}
|
|
|
|
<script src="{{ url_for('static', filename='js/navigation.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
|
</body>
|
|
</html> |