mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-21 16:11:28 +00:00
Edit 404 page, fix tags page
This commit is contained in:
parent
5bcde1d091
commit
ac5fb2492b
|
@ -34,6 +34,7 @@ theChronicles: The Chronicles
|
|||
primary: your primary source of news
|
||||
subscribe: Subscribe via RSS
|
||||
submit: Submit news
|
||||
tags: Tags
|
||||
wanted: WANTED
|
||||
featured: FEATURED
|
||||
news: IN THE NEWS
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
|
||||
---
|
||||
layout: layout
|
||||
---
|
||||
|
||||
<div class="card error__card">
|
||||
<div class="error__page">
|
||||
<h1 class="">404</h1>
|
||||
<h2>This isn't the page you're looking for.</h2>
|
||||
<h4><a href="/">Go back?</a></h4>
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
|
||||
|
||||
<% posts.forEach(function(item) { %>
|
||||
<li class="tags__item">
|
||||
<span class="tag__date"><%= item.date.format(config.date_format) %></span>
|
||||
<span class="tag__date"><%= item.date.format(config.date_format).split('-').join('.') %></span>
|
||||
<a href="<%- config.root %><%- item.path %>" class="title">
|
||||
<%- item.title || "Untitled" %>
|
||||
</a>
|
||||
|
|
|
@ -14,6 +14,7 @@ layout: layout
|
|||
<ul class="links">
|
||||
<li><a href="<%= config.url%>/atom.xml"><%- __('subscribe') %></a></li>
|
||||
<li><a href="https://gitlab.com/fediverse/fediverse.gitlab.io/merge_requests"><%- __('submit') %></a></li>
|
||||
<li><a href="/tags"><%- __('tags') %></a></li>
|
||||
</ul>
|
||||
|
||||
<% page.posts.each(function(post) { %>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
<%
|
||||
var title = '';
|
||||
let title = '';
|
||||
if (page.category) title = page.category;
|
||||
if (page.tag) title = "#" + page.tag;
|
||||
if (page.archive) {
|
||||
|
@ -8,28 +9,20 @@
|
|||
}
|
||||
%>
|
||||
|
||||
<header class="intro-header" style="background-image: url('<%= config.root %><%= page.banner || config.banner %>')">
|
||||
<h1>Tags</h1>
|
||||
</header>
|
||||
|
||||
<div class="container-wrapper">
|
||||
|
||||
<div class="contents">
|
||||
<div class="tags__cloud">
|
||||
<% site.tags.map(function(tag){ %>
|
||||
<a href="/tags/<%= tag.name %>" <% if (page.path === "tags/" + tag.name + "/index.html") { %> class="tag--current" <% } %> ><%= tag.name %></a>
|
||||
<% site.tags.map(function(tag) { %>
|
||||
#<a href="/tags/<%= tag.name %>" <% if (page.path === "tags/" + tag.name + "/index.html") { %> class="tag--current" <% } %> ><%= tag.name %></a>
|
||||
<% }) %>
|
||||
</div>
|
||||
|
||||
<div class="one-tag-list">
|
||||
<span class="tag__text"><%= title %></span>
|
||||
|
||||
<% var groupObj = _.groupBy(page.posts.toArray(), function(p){return -p.date.format('YYYY')}) %>
|
||||
<% for (var year in groupObj){ %>
|
||||
<% const groupObj = _.groupBy(page.posts.toArray(), function(p) {return -p.date.format('YYYY')}) %>
|
||||
<% for (let year in groupObj){ %>
|
||||
<h3 class="tags__year"><%- -year %></h3>
|
||||
<ul class="tags__list">
|
||||
<%- partial('_partial/taglist', {posts: groupObj[year]}) %>
|
||||
</ul>
|
||||
<% } %>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -1,23 +1,22 @@
|
|||
|
||||
---
|
||||
layout: layout
|
||||
---
|
||||
|
||||
<div class="container-wrapper">
|
||||
|
||||
<div class="contents">
|
||||
<div class="tags__cloud">
|
||||
<% site.tags.map(function(tag) { %>
|
||||
<a href="/tags/<%= tag.name %>"><%= tag.name %></a>
|
||||
#<a href="/tags/<%= tag.name %>"><%= tag.name %></a>
|
||||
<% }) %>
|
||||
</div>
|
||||
|
||||
<div class="one-tag-list">
|
||||
<% var groupObj = _.groupBy(site.posts.toArray(), function(p){return -p.date.format('YYYY')}) %>
|
||||
<% for (var year in groupObj){ %>
|
||||
<% const groupObj = _.groupBy(site.posts.toArray(), function(p){return -p.date.format('YYYY')}) %>
|
||||
|
||||
<% for (let year in groupObj){ %>
|
||||
<h3 class="tags__year"><%- -year %></h3>
|
||||
<ul class="tags__list">
|
||||
<%- partial('_partial/taglist', {posts: groupObj[year]}) %>
|
||||
<%- partial('_partial/taglist', {posts: _.sortBy(groupObj[year], 'date').reverse()}) %>
|
||||
</ul>
|
||||
<% } %>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
@import "modules/footer";
|
||||
@import "modules/index";
|
||||
@import "modules/404";
|
||||
@import "modules/tags";
|
||||
@import "modules/heroheader";
|
||||
@import "modules/buttons";
|
||||
@import "modules/network";
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
|
||||
.error__card {
|
||||
.error__page {
|
||||
text-align: center;
|
||||
padding-top: 4em;
|
||||
}
|
||||
|
|
8
themes/starter/source/assets/scss/modules/_tags.scss
Normal file
8
themes/starter/source/assets/scss/modules/_tags.scss
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
.tags__cloud {
|
||||
margin: 5em 0 2em;
|
||||
}
|
||||
|
||||
.tag__date {
|
||||
margin-right: 1em;
|
||||
}
|
Loading…
Reference in a new issue