blob: d8df841c80478fe1fcd8affde997e7a85d78bdbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
##Pelican-plugins: Another Read More Link
- Inspired by [Octopress](http://octopress.org/docs/blogging/)
- Reference to [read_more_link](https://github.com/getpelican/pelican-plugins/tree/master/read_more_link)
"
Inserting a `<!-- more -->` comment into your post will prevent the post content below this mark from being displayed on the index page for the blog posts, a "Continue →" button links to the full post.
"
demo: [fangpeishi.com](http://fangpeishi.com)
```css
.another-read-more-link {
background: #eee;
display: inline-block;
padding: .4em .4em;
margin-right: .5em;
text-decoration: none;
color: #737373;
transition: background-color 0.5s;
}
```

###Settings
```
ANOTHER_READ_MORE_LINK = "Read more"
ANOTHER_READ_MORE_LINK_FORMAT = '<a class="another-read-more-link" href="{url}">{text}</a>'
READ_MORE_ID = 'read_more_link'
```
|