Skip to content

Commit

Permalink
chore: stop rendering tags links until I can be bothered to implement…
Browse files Browse the repository at this point in the history
… them
  • Loading branch information
maddiemort committed Oct 20, 2024
1 parent b9babb0 commit bdffdfc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions src/state/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ impl<'a> Render for PostRef<'a> {
li { (metadata.date) }
@for tag in post.tags() {
li {
a href=(format!("/tagged/{}", tag)) {
// a href=(format!("/tagged/{}", tag)) {
(tag)
}
// }
}
}
}
Expand Down Expand Up @@ -69,9 +69,9 @@ impl<'a> Render for PostRef<'a> {
@if i == 0 {
@for tag in post.tags() {
li {
a href=(format!("/tagged/{}", tag)) {
// a href=(format!("/tagged/{}", tag)) {
(tag)
}
// }
}
}
}
Expand Down Expand Up @@ -222,9 +222,9 @@ impl Render for PostsRef<'_> {
}
@for tag in post.tags() {
li {
a href=(format!("/tagged/{}", tag)) {
// a href=(format!("/tagged/{}", tag)) {
(tag)
}
// }
}
}
}
Expand Down Expand Up @@ -370,9 +370,9 @@ impl Render for ChronoRef<'_> {
}
@for tag in entry.tags() {
li {
a href=(format!("/tagged/{}", tag)) {
// a href=(format!("/tagged/{}", tag)) {
(tag)
}
// }
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/templates/wrappers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub async fn base(title: Option<&str>, theme: Theme, content: Markup) -> Markup
ul {
li { a href="/posts" { "posts" } }
li { a href="/chrono" { "chrono" } }
li { a href="/tags" { "tags" } }
// li { a href="/tags" { "tags" } }
}
}
}
Expand Down

0 comments on commit bdffdfc

Please sign in to comment.