added a div element to prevent the whole left side of a post to be a link

This commit is contained in:
Leonard Lorenz 2020-12-05 22:43:11 +01:00
parent ec86734ea1
commit c7ad153adf
4 changed files with 10 additions and 4 deletions

View file

@ -18,7 +18,9 @@
<ul> <ul>
{% for post in posts %} {% for post in posts %}
<article> <article>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a> <div>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a>
</div>
<div class="post-content"> <div class="post-content">
<h2 class="post-title">{{ post.title }}</h2> <h2 class="post-title">{{ post.title }}</h2>
<sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub> <sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub>

View file

@ -17,7 +17,9 @@
<p style="text-align: right"><a href="/">Home</a> <a href="/blog">Last 5 Posts</a> <a href="/blog/all">All Posts</a></p> <p style="text-align: right"><a href="/">Home</a> <a href="/blog">Last 5 Posts</a> <a href="/blog/all">All Posts</a></p>
<ul> <ul>
<article> <article>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a> <div>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a>
</div>
<div class="post-content"> <div class="post-content">
<h2 class="post-title">{{ post.title }}</h2> <h2 class="post-title">{{ post.title }}</h2>
<sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub> <sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub>

View file

@ -18,7 +18,9 @@
<ul> <ul>
{% for post in posts %} {% for post in posts %}
<article> <article>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a> <div>
<a href="/blog/id/{{ post.id }}" class="post-link">[link]</a>
</div>
<div class="post-content"> <div class="post-content">
<h2 class="post-title">{{ post.title }}</h2> <h2 class="post-title">{{ post.title }}</h2>
<sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub> <sub class="post-publish-date"> {{ post.publish_date | date(format="%Y-%m-%d at %H:%M") }}</sub>

2
site/Cargo.lock generated
View file

@ -572,7 +572,7 @@ checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
[[package]] [[package]]
name = "crablog" name = "crablog"
version = "0.2.2" version = "0.2.3"
dependencies = [ dependencies = [
"actix-files", "actix-files",
"actix-web", "actix-web",