├── .github
└── funding.yml
├── screenshot.jpg
├── nav-below-single.php
├── index.php
├── nav-below.php
├── footer.php
├── sidebar.php
├── single.php
├── entry-summary.php
├── entry-footer.php
├── 404.php
├── archive.php
├── tag.php
├── category.php
├── author.php
├── entry-content.php
├── entry-meta.php
├── page.php
├── entry.php
├── search.php
├── header.php
├── comments.php
├── readme.txt
├── attachment.php
├── style.css
└── functions.php
/.github/funding.yml:
--------------------------------------------------------------------------------
1 | open_collective: blankslate
2 |
--------------------------------------------------------------------------------
/screenshot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/webguyio/blankslate/HEAD/screenshot.jpg
--------------------------------------------------------------------------------
/nav-below-single.php:
--------------------------------------------------------------------------------
1 | '← %title',
3 | 'next_text' => '%title →'
4 | );
5 | the_post_navigation( $args );
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 | sprintf( esc_html__( '%s older', 'blankslate' ), '←' ),
3 | 'next_text' => sprintf( esc_html__( 'newer %s', 'blankslate' ), '→' )
4 | );
5 | the_posts_navigation( $args );
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
11 |