mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
new: Added new tab pages and related modules
This commit is contained in:
@@ -94,4 +94,11 @@ a:hover {
|
||||
|
||||
.main-menu-link {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.special-info-area {
|
||||
height: 340px;
|
||||
padding: 20px;
|
||||
border-radius: 4px;
|
||||
border: var(--secondary-text-color) 1px dashed;
|
||||
}
|
||||
@@ -4,6 +4,18 @@ pre {
|
||||
border: var(--secondary-text-color) 1px dashed;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
tr, th, td {
|
||||
height: 30px;
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
border: 1px var(--secondary-text-color) solid;
|
||||
color: var(--primary-text-color);
|
||||
}
|
||||
|
||||
.post-menu {
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
53
templates/default/assets/css/tag.css
Normal file
53
templates/default/assets/css/tag.css
Normal file
@@ -0,0 +1,53 @@
|
||||
.tagged-name {
|
||||
color: var(--primary-color);
|
||||
}
|
||||
|
||||
.tagged-post-item {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
color: var(--primary-text-color);
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.tagged-post-item-wrap {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.tagged-post-item-date {
|
||||
color: var(--secondary-text-color);
|
||||
}
|
||||
|
||||
.tagged-post-item-date {
|
||||
color: var(--secondary-text-color);
|
||||
}
|
||||
|
||||
.tagged-post-pagination-item {
|
||||
color: var(--secondary-text-color);
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.tag-statistics {
|
||||
width: 60%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.tag-word-cloud-canvas {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.tag-word-cloud-canvas * {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
.tag-statistics {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
1243
templates/default/assets/js/lib/wordcloud2.js
Normal file
1243
templates/default/assets/js/lib/wordcloud2.js
Normal file
File diff suppressed because it is too large
Load Diff
12
templates/default/assets/js/tag.js
Normal file
12
templates/default/assets/js/tag.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const tagWordCloudCanvas = document.getElementById('tag-word-cloud-canvas');
|
||||
|
||||
const options = {
|
||||
list: JSON.parse(tagList),
|
||||
weightFactor: 20,
|
||||
backgroundColor: 'transparent',
|
||||
click: (item) => {
|
||||
console.log(item[0], item[1]);
|
||||
}
|
||||
};
|
||||
|
||||
WordCloud(tagWordCloudCanvas, options);
|
||||
@@ -45,7 +45,7 @@
|
||||
<div class="container p-3">
|
||||
<div class="row pt-lg-3">
|
||||
<h4 class="history-post-title"># {{ .history_post.title }}</h4>
|
||||
<div class="col-12 col-md-8">
|
||||
<div class="col-12 col-lg-9">
|
||||
<div>
|
||||
{{ range $i, $v := .history_post.posts }}
|
||||
<div class="row history-post-item">
|
||||
@@ -55,7 +55,7 @@
|
||||
<a href="/post/{{ $v.HtmlHash }}">{{ $v.Title }}</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block history-post-item-wrap">
|
||||
<div class="col d-none d-md-block history-post-item-wrap">
|
||||
<span style="color: var(--secondary-text-color)">
|
||||
[
|
||||
{{ range $i2, $v2 := $v.TagHashes }}
|
||||
@@ -71,6 +71,27 @@
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- special info -->
|
||||
<div class="col-lg-3 d-none d-lg-grid carousel slide special-info-area" id="special-info-area-controls" data-bs-ride="carousel">
|
||||
<div class="carousel-indicators">
|
||||
<button type="button" data-bs-target="#special-info-area-controls" data-bs-slide-to="0" aria-label="Slide 1" class="active" aria-current="true" ></button>
|
||||
<button type="button" data-bs-target="#special-info-area-controls" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
||||
<button type="button" data-bs-target="#special-info-area-controls" data-bs-slide-to="2" aria-label="Slide 3"></button>
|
||||
</div>
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
1111
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
2222
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
3333
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="row pt-3 pt-lg-4">
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<div class="container p-3">
|
||||
<div class="row pt-lg-3">
|
||||
<h4 class="recent-post-title"># {{ .recent_post.title }}</h4>
|
||||
<div class="col-12 col-md-8">
|
||||
<div class="col-12 col-lg-9">
|
||||
<div>
|
||||
{{ range $i, $v := .recent_post.posts }}
|
||||
<div class="row recent-post-item">
|
||||
@@ -54,7 +54,7 @@
|
||||
<a href="/post/{{ $v.HtmlHash }}">{{ $v.Title }}</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block recent-post-item-wrap">
|
||||
<div class="col d-none d-md-block recent-post-item-wrap">
|
||||
<span style="color: var(--secondary-text-color)">
|
||||
[
|
||||
{{ range $i2, $v2 := $v.TagHashes }}
|
||||
@@ -70,6 +70,27 @@
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- special info -->
|
||||
<div class="col-lg-3 d-none d-lg-grid carousel slide special-info-area" id="special-info-area-controls" data-bs-ride="carousel">
|
||||
<div class="carousel-indicators">
|
||||
<button type="button" data-bs-target="#special-info-area-controls" data-bs-slide-to="0" aria-label="Slide 1" class="active" aria-current="true" ></button>
|
||||
<button type="button" data-bs-target="#special-info-area-controls" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
||||
<button type="button" data-bs-target="#special-info-area-controls" data-bs-slide-to="2" aria-label="Slide 3"></button>
|
||||
</div>
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
1111
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
2222
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
3333
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
104
templates/default/html/tag.html
Normal file
104
templates/default/html/tag.html
Normal file
@@ -0,0 +1,104 @@
|
||||
{{ define "tag.html" }}
|
||||
|
||||
<html lang="{{ .site_info.language }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="{{ .site_info.logo }}"/>
|
||||
<link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/tag.css">
|
||||
<script src="../assets/js/lib/jquery.min.js"></script>
|
||||
<script src="../assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="../assets/js/lib/fontawesome.all.min.js"></script>
|
||||
<script src="../assets/js/lib/wordcloud2.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="root-container">
|
||||
<!-- header -->
|
||||
<div class="container p-3">
|
||||
<div class="row pt-3 pt-md-4 pt-lg-5">
|
||||
<div class="col main-logo">
|
||||
<div class="main-logo-img" style="background-image: url('{{ .site_info.logo }}');"></div>
|
||||
<div class="main-logo-txt">
|
||||
{{ .site_info.title }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- menu -->
|
||||
<div class="container p-3">
|
||||
<div class="row pt-lg-3">
|
||||
<div class="col mx-auto post-menu">
|
||||
{{ range $i, $v := .menu.Items }}
|
||||
<i class="{{ $v.Icon }} m-icon"></i>
|
||||
<a class="main-menu-link" href="{{ $v.Url }}"> {{ $v.Name }} </a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- body -->
|
||||
<div class="container p-3">
|
||||
<div class="row pt-lg-3">
|
||||
<h4 class="tagged-name"># {{ .tagged_post.tag_name }}</h4>
|
||||
<div class="col-12 col-md-8">
|
||||
<div>
|
||||
{{ range $i, $v := .tagged_post.posts }}
|
||||
<div class="row tagged-post-item">
|
||||
<div class="col tagged-post-item-wrap">
|
||||
<span class="d-none d-md-inline tagged-post-item-date">{{ $v.Date }} | </span>
|
||||
<span>
|
||||
<a href="/post/{{ $v.HtmlHash }}">{{ $v.Title }}</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row pt-3 pt-lg-4">
|
||||
<div class="col-12 col-md-8">
|
||||
<div class="tagged-post-pagination">
|
||||
<span class="tagged-post-pagination-item">
|
||||
<a href="/tag/{{ .tagged_post.tag_hash }}?page={{ .page_info.pre_page }}">
|
||||
<
|
||||
</a>
|
||||
</span>
|
||||
<span class="tagged-post-pagination-item">
|
||||
{{ .page_info.cur_page }} / {{ .page_info.all_page }}
|
||||
</span>
|
||||
<span class="tagged-post-pagination-item">
|
||||
<a href="/tag/{{ .tagged_post.tag_hash }}?page={{ .page_info.nxt_page }}">
|
||||
>
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- tag word cloud -->
|
||||
<div class="tag-statistics" id="tag-statistics">
|
||||
<div class="tag-word-cloud-canvas" id="tag-word-cloud-canvas"></div>
|
||||
</div>
|
||||
|
||||
<!-- footer -->
|
||||
<div class="footer">
|
||||
{{ .site_info.copyright }}
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const tagList = "{{ .tagged_post.tag_list }}";
|
||||
</script>
|
||||
<script src="../assets/js/tag.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user