├── layout
├── page.ejs
├── post.ejs
├── _partial
│ ├── pagination.ejs
│ ├── search.ejs
│ ├── post
│ │ ├── gallery.ejs
│ │ ├── title.ejs
│ │ ├── comment.ejs
│ │ └── meta.ejs
│ ├── footer.ejs
│ ├── article.ejs
│ ├── navigator.ejs
│ ├── after_footer.ejs
│ ├── archive.ejs
│ └── head.ejs
├── archive.ejs
├── index.ejs
└── layout.ejs
├── screenShots
├── ver0.9-index.jpg
├── ver0.9-tags.jpg
├── ver1.0-index.jpg
├── ver1.0-tags.jpg
├── ver0.9-article.jpg
├── ver0.9-dropdown.jpg
├── ver1.0-article.jpg
└── ver1.0-dropdown.jpg
├── languages
├── zh-CN.yml
└── en.yml
├── source
├── css
│ ├── .sass-cache
│ │ └── ea33da24c47acde61e70d637ab9c1840ecb6801e
│ │ │ ├── code.scssc
│ │ │ ├── footer.scssc
│ │ │ ├── main.scssc
│ │ │ ├── pager.scssc
│ │ │ ├── posts.scssc
│ │ │ ├── search.scssc
│ │ │ ├── animation.scssc
│ │ │ └── navigator.scssc
│ ├── posts.scss
│ ├── footer.scss
│ ├── animation.scss
│ ├── pager.scss
│ ├── search.scss
│ ├── code.scss
│ ├── navigator.scss
│ ├── main.scss
│ ├── m.min.css.map
│ └── m.min.css
└── js
│ └── search.js
├── _config.yml
└── README.md
/layout/page.ejs:
--------------------------------------------------------------------------------
1 | <%- partial('_partial/article', {item: page, index: false}) %>
--------------------------------------------------------------------------------
/layout/post.ejs:
--------------------------------------------------------------------------------
1 | <%- partial('_partial/article', {item: page, index: false}) %>
--------------------------------------------------------------------------------
/layout/_partial/pagination.ejs:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/screenShots/ver0.9-index.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver0.9-index.jpg
--------------------------------------------------------------------------------
/screenShots/ver0.9-tags.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver0.9-tags.jpg
--------------------------------------------------------------------------------
/screenShots/ver1.0-index.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver1.0-index.jpg
--------------------------------------------------------------------------------
/screenShots/ver1.0-tags.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver1.0-tags.jpg
--------------------------------------------------------------------------------
/screenShots/ver0.9-article.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver0.9-article.jpg
--------------------------------------------------------------------------------
/screenShots/ver0.9-dropdown.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver0.9-dropdown.jpg
--------------------------------------------------------------------------------
/screenShots/ver1.0-article.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver1.0-article.jpg
--------------------------------------------------------------------------------
/screenShots/ver1.0-dropdown.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lchiffon/hexo-theme-pln/master/screenShots/ver1.0-dropdown.jpg
--------------------------------------------------------------------------------
/layout/archive.ejs:
--------------------------------------------------------------------------------
1 |
5 |
6 |
9 |
10 | <%- config.subtitle%>
11 |
12 |
13 |
14 | <%- body %>
15 |
16 |
17 |
18 | <%- partial('_partial/after_footer') %>
19 |
20 |