-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: related posts, according to #67 #109
Changes from 3 commits
85d8f64
7f992ee
b453402
3e3d10a
0645368
822696b
8ddc9d4
3c44d16
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,26 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ul.popular-posts { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
padding: 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
&:before { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
content: hexo-config('related_posts.title') || 'Related Posts'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it is better to provide There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, i think so too. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin-top: $post-eof-margin-bottom; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin-bottom: 10px; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
font-size: $font-size-headings-base; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
border-bottom: 1px solid $gainsboro; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
display: block; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.popular-posts-item { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// list-style: none; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin-left: 2em; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.popular-posts-title { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
display: block; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
h3 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. H3 here? And if will There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ivan-nginx It is generated by the plugin (https://github.com/theme-next/hexo-theme-next/pull/109/files#diff-0e030eb6dd7b9d25bfcba06bc8ea5609R337), otherwise, do we need to custom the template? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. H3 in the bottom bad for SEO. For example, if
It's already fine with SEO. But if
But we also may get bad result:
So, with Headers can go forward only seriatim. And can go back with any new position (header reseting). They can't go forward bigger then 1 or more step (e.g. H4 header and after H6). hexo-theme-next/source/css/_schemes/Gemini/index.styl Lines 131 to 160 in 82ac7af
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
font-weight: normal; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
font-size: $font-size-base; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
line-height: $line-height-base * 1.2; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So many for now. oO Mb move to external
swig
file?Like
post-copyright.swig
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ivan-nginx OK, seems now it need to be move to the single file.