├── screenshot.png ├── languages ├── default.mo ├── ru_RU.mo ├── default.po └── ru_RU.po ├── sidebar.php ├── js ├── keyboard-image-navigation.js ├── small-menu.js └── html5.js ├── footer.php ├── searchform.php ├── content-page.php ├── page.php ├── single.php ├── search.php ├── readme.txt ├── no-results.php ├── index.php ├── 404.php ├── header.php ├── content-single.php ├── content.php ├── inc ├── custom-header.php └── template-tags.php ├── comments.php ├── archive.php ├── functions.php ├── image.php ├── editor-style.css ├── rtl └── style-rtl.css └── style.css /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovshenin/publish/HEAD/screenshot.png -------------------------------------------------------------------------------- /languages/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovshenin/publish/HEAD/languages/default.mo -------------------------------------------------------------------------------- /languages/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovshenin/publish/HEAD/languages/ru_RU.mo -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 9 |
13 | -------------------------------------------------------------------------------- /js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- 1 | jQuery( document ).ready( function( $ ) { 2 | $( document ).keydown( function( e ) { 3 | var url = false; 4 | if ( e.which == 37 ) { // Left arrow key code 5 | url = $( '.previous-image a' ).attr( 'href' ); 6 | } 7 | else if ( e.which == 39 ) { // Right arrow key code 8 | url = $( '.entry-attachment a' ).attr( 'href' ); 9 | } 10 | if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) { 11 | window.location = url; 12 | } 13 | } ); 14 | } ); -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | 14 | 19 | 20 | 21 | 22 | 23 |