enmanuel.saravia.contractor 4439490491 first_commit | před 2 roky | |
---|---|---|
.. | ||
.gitignore | před 2 roky | |
LICENSE | před 2 roky | |
Readme.md | před 2 roky | |
__init__.py | před 2 roky | |
another_read_more_link.py | před 2 roky |
##Pelican-plugins: Another 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
.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'