This repository was archived by the owner on Feb 1, 2023. It is now read-only.
File tree 3 files changed +23
-4
lines changed
3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
+ ## [ Unreleased] -
9
+
10
+ ### Changed
11
+ - Make entire entries and archive items "clickable"
12
+ - Remove redundant "Read more..." links on each entry.
13
+
8
14
## [ 3.1.2] - 02-17-2018
9
15
10
16
### Changed
Original file line number Diff line number Diff line change 8
8
< header class ="entry-header ">
9
9
< h3 class ="entry-title p-name ">
10
10
{% if entry.link %}
11
- < a class ="u-bookmark-of " href ="{{ entry.link }} "> {{ title }} < span class ="link-arrow "> →</ span > </ a >
11
+ < a class ="u-bookmark-of " href ="{{ entry.link }} "> {{ title }}</ a > < a href =" {{ entry.url | relative_url }} " rel =" bookmark " > < span class ="link-arrow "> →</ span > </ a >
12
12
{% else %}
13
13
< a href ="{{ entry.url | relative_url }} " rel ="bookmark "> {{ title }}</ a >
14
14
{% endif %}
@@ -26,9 +26,6 @@ <h3 class="entry-title p-name">
26
26
< div class ="entry-excerpt p-summary ">
27
27
{% if entry.excerpt %}
28
28
{{ entry.excerpt | markdownify }}
29
- < div class ="more-link ">
30
- < a href ="{{ entry.url | relative_url }} "> {{ site.data.text[site.locale].read_more | default: 'Read More' }}</ a >
31
- </ div >
32
29
{% endif %}
33
30
</ div >
34
31
{% endunless %}
Original file line number Diff line number Diff line change 4
4
5
5
.entry {
6
6
@include clearfix ();
7
+ position : relative ;
7
8
8
9
a {
9
10
color : inherit ;
35
36
a {
36
37
text-decoration : none ;
37
38
}
39
+
40
+ a [rel = " bookmark" ]::before {
41
+ content : ' ' ;
42
+ position : absolute ;
43
+ left : 0 ;
44
+ top : 0 ;
45
+ right : 0 ;
46
+ bottom : 0 ;
47
+ }
38
48
}
39
49
40
50
.entry-image {
59
69
}
60
70
}
61
71
72
+ .entry-excerpt a ,
73
+ .u-bookmark-of {
74
+ position : relative ;
75
+ z-index : 10 ;
76
+ }
77
+
62
78
/*
63
79
Entries List Layout
64
80
========================================================================== */
You can’t perform that action at this time.
0 commit comments