├── .editorconfig ├── .github └── dependabot.yml ├── .gitignore ├── Gruntfile.js ├── _config.yml ├── docker-compose.yml ├── license.txt ├── pack.sh ├── package.json ├── phpcs.ruleset.xml ├── readme.md ├── sass ├── _comments.scss ├── _compatibility.scss ├── _custom_post_formats.scss ├── _forms.scss ├── _header.scss ├── _integrations.scss ├── _main.scss ├── _media.scss ├── _menu.scss ├── _mixins.scss ├── _posts.scss ├── _print.scss ├── _responsive.scss ├── _responsive_479.scss ├── _responsive_767.scss ├── _responsive_959.scss ├── _structure.scss ├── _tables.scss ├── _vars.scss ├── _widgets.scss ├── editor-style.scss └── style.scss └── sempress ├── 404.php ├── archive.php ├── author.php ├── category.php ├── comments.php ├── content-aside.php ├── content-audio.php ├── content-chat.php ├── content-gallery.php ├── content-image.php ├── content-link.php ├── content-page.php ├── content-quote.php ├── content-single.php ├── content-status.php ├── content-video.php ├── content.php ├── css └── editor-style.css ├── entry-footer.php ├── entry-header.php ├── font ├── genericons-regular-webfont.eot ├── genericons-regular-webfont.svg ├── genericons-regular-webfont.ttf └── genericons-regular-webfont.woff ├── footer.php ├── full-width-page.php ├── functions.php ├── header.php ├── image.php ├── img └── noise.png ├── inc ├── compat.php └── semantics.php ├── index.php ├── int ├── post-kinds.php └── syndication-links.php ├── js ├── functions.js └── html5shiv.min.js ├── languages ├── de_DE.mo ├── de_DE.po ├── fr_FR.mo ├── fr_FR.po ├── id_ID.mo ├── id_ID.po ├── ko_KR.mo ├── ko_KR.po ├── nb_NO.mo ├── nb_NO.po ├── ru_RU.mo ├── ru_RU.po ├── sempress.pot ├── sv_SE.mo └── sv_SE.po ├── license.txt ├── page.php ├── readme.txt ├── rtl.css ├── screenshot.png ├── search.php ├── sidebar.php ├── single.php ├── style.css ├── tag.php └── taxonomy-post_format.php /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | end_of_line = lf 8 | trim_trailing_whitespace = true 9 | charset = utf-8 10 | 11 | [*.php] 12 | indent_style = tab 13 | indent_size = 4 14 | 15 | [*.{js,json}] 16 | indent_style = space 17 | indent_size = 2 18 | 19 | # charset 20 | charset = utf-8 21 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "npm" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "daily" 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/* 2 | node_modules/* 3 | *.esproj 4 | sempress.zip 5 | package-lock.json 6 | .idea/* 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | const sass = require('node-sass'); 3 | 4 | // Project configuration. 5 | grunt.initConfig({ 6 | pkg: grunt.file.readJSON('package.json'), 7 | sass: { 8 | main: { 9 | options: { 10 | implementation: sass, 11 | outputStyle: 'compressed', 12 | sourceComments: false, 13 | sourceMap: false 14 | }, 15 | files: { 16 | 'sempress/style.css': 'sass/style.scss', 17 | 'sempress/css/editor-style.css': 'sass/editor-style.scss' 18 | } 19 | } 20 | }, 21 | replace: { 22 | style: { 23 | options: { 24 | variables: { 25 | 'author': '<%= pkg.author.name %>', 26 | 'author_url': '<%= pkg.author.url %>', 27 | 'version': '<%= pkg.version %>', 28 | 'license': '<%= pkg.license.name %>', 29 | 'license_version': '<%= pkg.license.version %>', 30 | 'license_url': '<%= pkg.license.url %>', 31 | 'name': '<%= pkg.name %>', 32 | 'description': '<%= pkg.description %>', 33 | 'homepage': '<%= pkg.homepage %>', 34 | 'keywords': '<%= pkg.keywords.join(", ") %>', 35 | 'php': '<%= pkg.wordpress.php %>', 36 | 'wordpress': '<%= pkg.wordpress.wordpress %>' 37 | }, 38 | prefix: '@@' 39 | }, 40 | files: [{ 41 | expand: true, 42 | flatten: true, 43 | src: ['sempress/style.css'], 44 | dest: 'sempress' 45 | }] 46 | } 47 | }, 48 | makepot: { 49 | target: { 50 | options: { 51 | cwd: 'sempress', 52 | domainPath: '/languages', 53 | exclude: ['bin/.*', '.git/.*', 'vendor/.*'], 54 | potFilename: 'sempress.pot', 55 | type: 'wp-theme', 56 | updateTimestamp: true 57 | } 58 | } 59 | } 60 | }); 61 | 62 | grunt.loadNpmTasks('grunt-sass'); 63 | grunt.loadNpmTasks('grunt-replace'); 64 | grunt.loadNpmTasks('grunt-contrib-watch'); 65 | grunt.loadNpmTasks('grunt-wp-i18n'); 66 | 67 | // Default task(s). 68 | grunt.registerTask('default', ['sass', 'replace']); 69 | }; 70 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | services: 3 | db: 4 | image: mysql:5.7 5 | restart: always 6 | environment: 7 | MYSQL_ROOT_PASSWORD: wordpress 8 | MYSQL_DATABASE: wordpress 9 | MYSQL_USER: wordpress 10 | MYSQL_PASSWORD: wordpress 11 | 12 | wordpress: 13 | depends_on: 14 | - db 15 | image: wordpress:latest 16 | links: 17 | - db 18 | ports: 19 | - "8012:80" 20 | volumes: 21 | - ./sempress:/var/www/html/wp-content/themes/sempress 22 | restart: always 23 | environment: 24 | WORDPRESS_DB_HOST: db:3306 25 | WORDPRESS_DB_USER: wordpress 26 | WORDPRESS_DB_PASSWORD: wordpress 27 | WORDPRESS_DEBUG: 1 28 | -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- 1 | zip -X -r sempress.zip sempress 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SemPress", 3 | "version": "1.7.0", 4 | "wordpress": { 5 | "php": "5.6", 6 | "wordpress": "5.9" 7 | }, 8 | "description": "SemPress is an extremely lightweight, responsive theme designed to show off your posts, quotes, and images. SemPress supports multiple post formats, widgets, and the option to upload a custom header or background image. The theme is based on HTML5 mixed with microformats, microformats v2 and microdata (Schema.org).", 9 | "main": "Gruntfile.js", 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/pfefferle/SemPress.git" 13 | }, 14 | "bugs": { 15 | "url": "https://github.com/pfefferle/SemPress/issues" 16 | }, 17 | "keywords": [ 18 | "custom-menu", 19 | "custom-colors", 20 | "custom-header", 21 | "custom-background", 22 | "custom-logo", 23 | "sticky-post", 24 | "microformats", 25 | "rtl-language-support", 26 | "translation-ready", 27 | "full-width-template", 28 | "post-formats", 29 | "threaded-comments", 30 | "right-sidebar", 31 | "theme-options", 32 | "two-columns", 33 | "one-column", 34 | "editor-style", 35 | "featured-images", 36 | "blog", 37 | "news" 38 | ], 39 | "author": { 40 | "name": "Matthias Pfefferle", 41 | "url": "https://notiz.blog/projects/sempress/" 42 | }, 43 | "license": { 44 | "name": "GNU General Public License", 45 | "version": "3", 46 | "url": "http://www.gnu.org/licenses/gpl.html" 47 | }, 48 | "homepage": "https://github.com/pfefferle/SemPress", 49 | "devDependencies": { 50 | "grunt": "~1.6.0", 51 | "grunt-contrib-watch": "^1.1.0", 52 | "grunt-replace": "~2.0.2", 53 | "grunt-sass": "^3.1.0", 54 | "grunt-wp-i18n": "^1.0.3", 55 | "node-sass": "^9.0.0" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Defaults for Indieweb 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # SemPress 2 | 3 | A WordPress theme, highly semantic, HTML5 templates, responsive and SEO optimized. 4 | 5 | ![SenPress](https://raw.githubusercontent.com/pfefferle/SemPress/master/sempress/screenshot.png) 6 | 7 | SemPress supports most of the new HTML5 tags, the new HTML5 input-types, microformats, microformats v2 and microdata (Schema.org). 8 | 9 | ## POSH - Plain old Semantic HTML 10 | 11 | From the [micrormats wiki](http://microformats.org/wiki/posh): 12 | 13 | > The term semantic-html is a mouthful, and belies both how simple it is, how well established 14 | > it is among modern web designers, and the fact that it has benefits far beyond the obvious doing 15 | > the right thing for the Web by using semantic markup. We need a simple short mnemonic term that 16 | > captures the essence of the concept, and is easily verbed (to posh, poshify, poshed up). 17 | 18 | SemPress is fully HTML5 compatible and uses a lot of the new tags, semantics and input-types. 19 | 20 | ## Web Semantics 21 | 22 | SemPress' code is marked-up with microformats and microdata: 23 | 24 | * used [microformats](http://microformats.org/): 25 | * [hAtom](http://microformats.org/wiki/hatom) 26 | * [hCard](http://microformats.org/wiki/hcard) 27 | * [rel-tag](http://microformats.org/wiki/rel-tag) 28 | * [XFN](http://microformats.org/wiki/xfn) 29 | * used [microformats version 2](http://microformats.org/wiki/microformats-2): 30 | * [h-feed](http://microformats.org/wiki/h-feed)/[h-entry](http://microformats.org/wiki/h-entry) 31 | * [h-card](http://microformats.org/wiki/h-card) 32 | * [Comment Draft](http://microformats.org/wiki/comment-brainstorming#microformats2_h-feed_p-comments) 33 | * used [microdata](http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.html): 34 | * http://schema.org/Blog 35 | * http://schema.org/BlogPosting 36 | * http://schema.org/UserComments 37 | * http://schema.org/WebPage 38 | * http://schema.org/Person 39 | 40 | Planned formats: 41 | 42 | * micormats (v2): hAudio and hMedia 43 | * microdata: http://schema.org/MediaObject 44 | 45 | ## WordPress Features 46 | 47 | SemPress supports: 48 | 49 | * [Custom Post Formats](http://codex.wordpress.org/Post_Formats): aside, status, gallery, video, audio, chat, quote, link and image 50 | * [Post-Thumbnails](http://codex.wordpress.org/Post_Thumbnails) 51 | * [Editor-Style](http://codex.wordpress.org/Function_Reference/add_editor_style) 52 | * [Navigation Menus](http://codex.wordpress.org/Navigation_Menus) 53 | * [Automatic Feed Links](http://codex.wordpress.org/Automatic_Feed_Links) 54 | * [Custom-Header](http://codex.wordpress.org/Custom_Headers) 55 | * [Custom-Backgrounds](http://codex.wordpress.org/Custom_Backgrounds) 56 | * [Infinite Scroll](http://jetpack.me/support/infinite-scroll/) (JetPack) 57 | 58 | ## Translations 59 | 60 | * **de_DE** 61 | * [Benjamin Hartwich](http://www.benjaminhartwich.de/) ([@benhartwich](https://twitter.com/benhartwich)) 62 | * **fr_FR** 63 | * [Julien Pierré](http://www.jp-software.fr/en/) 64 | * **id_ID** 65 | * [Sugeng Tigefa](https://github.com/tigefa4u) ([@sugeng_tigefa](https://twitter.com/sugeng_tigefa)) 66 | * [Rizky Luthfianto](https://github.com/rilut) ([@rilut](https://twitter.com/rilut)) 67 | * **ko_KR** 68 | * [CARLITO](http://www.calitosway.net) ([@calitoway](https://twitter.com/calitoway)) 69 | * **nb_NO** 70 | * [Kristoffer Risanger](https://github.com/kristofferR) ([@kristofferR](https://twitter.com/kristofferR)) 71 | * **ru_RU** 72 | * [Oleg](http://0leg.net) ([@oleg_sh](https://twitter.com/oleg_sh)) 73 | * **sv_SE** 74 | * [Christopher Anderton](http://deluxive.se/blog/) ([@deluxivese](https://twitter.com/deluxivese)) 75 | 76 | ## Child themes 77 | 78 | ### [Index](http://cmx.org.uk/indextheme/) by [Phil Julian](http://cmx.org.uk/) 79 | 80 | See for an example 81 | 82 | ### [SemPress Lite](https://github.com/jihaisse/SemPress-Lite) by [Jihaisse](http://jihais.se/) 83 | 84 | ![SemPress Lite](https://raw.githubusercontent.com/jihaisse/SemPress-Lite/master/sempress-lite/screenshot.png) 85 | 86 | ### [SenPress](https://github.com/pfefferle/SenPress) by me 87 | 88 | ![SenPress](https://raw.githubusercontent.com/pfefferle/SenPress/master/screenshot.png) 89 | -------------------------------------------------------------------------------- /sass/_comments.scss: -------------------------------------------------------------------------------- 1 | /* =Comments 2 | -------------------------------------------------------------- */ 3 | 4 | article.comment { 5 | @include border-shadow-top; 6 | display: block; 7 | position: relative; 8 | padding: 25px 0; 9 | line-height: 24px; 10 | } 11 | 12 | #comments input { 13 | display: block; 14 | } 15 | #comments input[type="checkbox"] { 16 | display: inline; 17 | } 18 | #respond .form-allowed-tags { 19 | clear: both; 20 | width: 98%; 21 | } 22 | #respond .form-allowed-tags code { 23 | display: block; 24 | } 25 | .form-allowed-tags { 26 | display: none; 27 | } 28 | #reply-title { 29 | padding-top: 0; 30 | margin-top: 0; 31 | } 32 | a.comment-reply-link { 33 | font-size: 12px; 34 | height: 16px; 35 | line-height: 16px; 36 | &:before { 37 | font-family: 'Genericons'; 38 | content: '\f412'; 39 | padding-right: 5px; 40 | } 41 | } 42 | li.comment { 43 | list-style: none outside none; 44 | margin: 10px 0; 45 | 46 | cite { 47 | font-style: normal; 48 | font-weight: normal; 49 | } 50 | img.avatar { 51 | float: right; 52 | } 53 | } 54 | .comment-meta, .comment-notes, .logged-in-as { 55 | display: block; 56 | font-size: 12px; 57 | } 58 | .comment-meta a, .comment-reply-link { 59 | text-decoration: none; 60 | &:hover { 61 | text-decoration: underline; 62 | } 63 | } 64 | ol.commentlist { 65 | margin: 0; 66 | padding: 0; 67 | } 68 | .comment-content { 69 | font-size: 1em; 70 | } 71 | .webmention, .pingback, .trackback { 72 | .comment-content { 73 | font-size: 0.9em; 74 | } 75 | } 76 | .commentlist .odd article { 77 | } 78 | .bypostauthor { 79 | color: inherit; 80 | } 81 | #comments { 82 | padding-top: 40px; 83 | } 84 | .comment-respond { 85 | @include border-shadow-top; 86 | padding: 25px 0; 87 | } -------------------------------------------------------------------------------- /sass/_compatibility.scss: -------------------------------------------------------------------------------- 1 | .post-likes-widget { 2 | overflow: hidden; 3 | } 4 | 5 | // infinite-scroll comes with jetpack 6 | .infinite-scroll { 7 | #nav-below, #nav-above, #colophon { 8 | display: none; 9 | } 10 | } 11 | 12 | .jp-carousel-wrap { 13 | text-shadow: none; 14 | } -------------------------------------------------------------------------------- /sass/_custom_post_formats.scss: -------------------------------------------------------------------------------- 1 | /* Aside Posts */ 2 | .format-aside, 3 | .format-status, 4 | .format-link, 5 | .no-title { 6 | .entry-content, 7 | .entry-summary { 8 | padding-top: 15px; 9 | } 10 | .entry-reaction { 11 | padding-top: 34px; 12 | } 13 | } 14 | 15 | .format-chat { 16 | .chat-timestamp { 17 | float: right; 18 | font-weight: normal; 19 | font-size: 10px; 20 | color: $blue; 21 | } 22 | } 23 | 24 | /* Custom Post Types */ 25 | .format-aside:before, 26 | .format-video:before, 27 | .format-audio:before, 28 | .format-image:before, 29 | .format-gallery:before, 30 | .format-link:before, 31 | .format-quote:before, 32 | .format-chat:before, 33 | //.format-standard:before, 34 | .error404:before, 35 | .sticky:before, 36 | .format-status .entry-meta .avatar { 37 | font-family: 'Genericons'; 38 | display: block; 39 | font-size: 45px; 40 | font-style: normal; 41 | position: absolute; 42 | left: -65px; 43 | top: 25px; 44 | width: 40px; 45 | height: 40px; 46 | } 47 | //.format-standard:before { 48 | // content: '\f100'; 49 | //} 50 | .format-aside:before { 51 | content: '\f101'; 52 | } 53 | .format-video:before { 54 | content: '\f104'; 55 | } 56 | .format-audio:before { 57 | content: '\f109'; 58 | } 59 | .format-image:before { 60 | content: '\f102'; 61 | } 62 | .format-gallery:before { 63 | content: '\f103'; 64 | } 65 | .format-link { 66 | &:before { 67 | content: '\f107'; 68 | } 69 | } 70 | .sticky:before { 71 | content: '\f308'; 72 | } 73 | .format-quote { 74 | .entry-content { 75 | blockquote:first-child { 76 | background-color: #F5F5F5; 77 | height: auto; 78 | padding: 34px; 79 | margin: 0 -34px 34px -34px; 80 | font-size: 25px; 81 | border-bottom: 1px solid rgba(0, 0, 0, 0.15); 82 | line-height: 1.5; 83 | 84 | &:before { 85 | content: none; 86 | } 87 | p { 88 | font-size: 25px; 89 | } 90 | p:first-child { 91 | padding-top: 0px; 92 | margin-top: 0px; 93 | } 94 | } 95 | } 96 | 97 | &:before { 98 | content: '\f106'; 99 | } 100 | } 101 | .format-chat:before { 102 | content: '\f108'; 103 | } 104 | .error404:before { 105 | content: '\f423'; 106 | } 107 | 108 | article.format-video { 109 | .entry-media { 110 | background-color: #000000; 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /sass/_forms.scss: -------------------------------------------------------------------------------- 1 | /* =Forms 2 | -------------------------------------------------------------- */ 3 | 4 | form { 5 | margin: 0 0 18px; 6 | } 7 | fieldset { 8 | padding: 0; 9 | margin: 0; 10 | border: 0; 11 | } 12 | legend { 13 | display: block; 14 | width: 100%; 15 | padding: 0; 16 | margin-bottom: 27px; 17 | font-size: 19.5px; 18 | line-height: 36px; 19 | color: #333; 20 | border: 0; 21 | border-bottom: 1px solid #e5e5e5; 22 | } 23 | legend small { 24 | font-size: 13.5px; 25 | color: #999; 26 | } 27 | label, 28 | input, 29 | button, 30 | textarea { 31 | font-size: 13px; 32 | font-weight: normal; 33 | line-height: 18px; 34 | } 35 | label { 36 | margin-bottom: 5px; 37 | } 38 | textarea, 39 | input[type="text"], 40 | input[type="password"], 41 | input[type="datetime"], 42 | input[type="datetime-local"], 43 | input[type="date"], 44 | input[type="month"], 45 | input[type="time"], 46 | input[type="week"], 47 | input[type="number"], 48 | input[type="email"], 49 | input[type="url"], 50 | input[type="search"], 51 | input[type="tel"], 52 | input[type="color"] { 53 | display: inline-block; 54 | height: 18px; 55 | min-height: 18px; 56 | padding: 4px; 57 | margin-bottom: 9px; 58 | font-size: 13px; 59 | line-height: 18px; 60 | color: #555; 61 | } 62 | textarea, 63 | input[type="text"], 64 | input[type="password"], 65 | input[type="datetime"], 66 | input[type="datetime-local"], 67 | input[type="date"], 68 | input[type="month"], 69 | input[type="time"], 70 | input[type="week"], 71 | input[type="number"], 72 | input[type="email"], 73 | input[type="url"], 74 | input[type="search"], 75 | input[type="tel"], 76 | input[type="color"] { 77 | background-color: #fff; 78 | border: 1px solid #ccc; 79 | @include rounded($border-radius); 80 | @include box-shadow(inset, 0, 1px, 1px, rgba(0, 0, 0, 0.075)); 81 | -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; 82 | -moz-transition: border linear 0.2s, box-shadow linear 0.2s; 83 | -ms-transition: border linear 0.2s, box-shadow linear 0.2s; 84 | -o-transition: border linear 0.2s, box-shadow linear 0.2s; 85 | transition: border linear 0.2s, box-shadow linear 0.2s; 86 | } 87 | textarea:focus, 88 | input[type="text"]:focus, 89 | input[type="password"]:focus, 90 | input[type="datetime"]:focus, 91 | input[type="datetime-local"]:focus, 92 | input[type="date"]:focus, 93 | input[type="month"]:focus, 94 | input[type="time"]:focus, 95 | input[type="week"]:focus, 96 | input[type="number"]:focus, 97 | input[type="email"]:focus, 98 | input[type="url"]:focus, 99 | input[type="search"]:focus, 100 | input[type="tel"]:focus, 101 | input[type="color"]:focus { 102 | border-color: rgba(82, 168, 236, 0.8); 103 | outline: 0; 104 | outline: thin dotted \9; 105 | /* IE6-9 */ 106 | 107 | -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); 108 | -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); 109 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); 110 | } 111 | input[type="radio"], 112 | input[type="checkbox"] { 113 | margin: 3px 0; 114 | *margin-top: 0; 115 | /* IE7 */ 116 | 117 | line-height: normal; 118 | cursor: pointer; 119 | } 120 | input[type="submit"], 121 | input[type="reset"], 122 | input[type="button"], 123 | input[type="radio"], 124 | input[type="checkbox"] { 125 | width: auto; 126 | } 127 | input[type="text"], 128 | input[type="email"], 129 | input[type="url"] { 130 | margin: 0 1em 0 0; 131 | width: 70%; 132 | } 133 | textarea { 134 | width: 99%; 135 | height: auto; 136 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 137 | } 138 | input[type="submit"], input[type="button"], button { 139 | display: inline-block; 140 | *display: inline; 141 | /* IE7 inline-block hack */ 142 | 143 | *zoom: 1; 144 | padding: 4px 10px 4px; 145 | margin-bottom: 0; 146 | font-size: 13px; 147 | line-height: 18px; 148 | *line-height: 20px; 149 | color: #333333; 150 | text-align: center; 151 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); 152 | vertical-align: middle; 153 | cursor: pointer; 154 | background-color: #f5f5f5; 155 | background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); 156 | background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6); 157 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); 158 | background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); 159 | background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); 160 | background-image: linear-gradient(top, #ffffff, #e6e6e6); 161 | background-repeat: repeat-x; 162 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); 163 | border-color: #e6e6e6 #e6e6e6 #bfbfbf; 164 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); 165 | *background-color: #e6e6e6; 166 | /* Darken IE7 buttons by default so they stand out more given they won't have borders */ 167 | 168 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 169 | border: 1px solid #cccccc; 170 | *border: 0; 171 | border-bottom-color: #b3b3b3; 172 | @include rounded(4px); 173 | *margin-left: .3em; 174 | -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); 175 | -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); 176 | box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); 177 | 178 | &:hover, &:active, &.active, &.disabled, &[disabled] { 179 | background-color: #e6e6e6; 180 | *background-color: #d9d9d9; 181 | } 182 | 183 | &:active, &.active { 184 | background-color: #cccccc \9; 185 | } 186 | 187 | &:first-child { 188 | *margin-left: 0; 189 | } 190 | &:hover { 191 | color: #333; 192 | text-decoration: none; 193 | background-color: #e6e6e6; 194 | *background-color: #d9d9d9; 195 | /* Buttons in IE7 don't get borders, so darken on hover */ 196 | 197 | background-position: 0 -15px; 198 | -webkit-transition: background-position 0.1s linear; 199 | -moz-transition: background-position 0.1s linear; 200 | -ms-transition: background-position 0.1s linear; 201 | -o-transition: background-position 0.1s linear; 202 | transition: background-position 0.1s linear; 203 | } 204 | &:focus { 205 | outline: thin dotted #333; 206 | outline: 5px auto -webkit-focus-ring-color; 207 | outline-offset: -2px; 208 | } 209 | &.active, &:active { 210 | background-color: #e6e6e6; 211 | background-color: #d9d9d9 \9; 212 | background-image: none; 213 | outline: 0; 214 | -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 215 | -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 216 | box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 217 | } 218 | &.disabled, &[disabled] { 219 | cursor: default; 220 | background-color: #e6e6e6; 221 | background-image: none; 222 | opacity: 0.65; 223 | filter: alpha(opacity=65); 224 | -webkit-box-shadow: none; 225 | -moz-box-shadow: none; 226 | box-shadow: none; 227 | } 228 | } 229 | input[type="search"] { 230 | margin: 0; 231 | width: 95%; 232 | } 233 | input[type="submit"]#searchsubmit, 234 | #searchform label, 235 | input.searchsubmit, 236 | input.search-submit { 237 | display: none; 238 | } 239 | 240 | /* Class for labelling required form items */ 241 | .required { 242 | color: #cc0033; 243 | } -------------------------------------------------------------------------------- /sass/_header.scss: -------------------------------------------------------------------------------- 1 | /* =Header 2 | -------------------------------------------------------------- */ 3 | 4 | #branding { 5 | display: block; 6 | clear: both; 7 | margin-top: 60px; 8 | 9 | .logo { 10 | float: left; 11 | clear: both; 12 | margin-left: -70px; 13 | } 14 | } 15 | #site-image { 16 | float: left; 17 | @include rounded($border-radius); 18 | @include box-shadow(0, 1px, 5px, 0, rgba(0,0,0,0.2)); 19 | margin-bottom: 40px; 20 | clear: both; 21 | } 22 | #site-title { 23 | font-size: 4em; 24 | letter-spacing: -2px; 25 | margin: 0; 26 | a { 27 | text-decoration: none; 28 | } 29 | .custom-header & { 30 | font-size: 3em; 31 | } 32 | } 33 | #site-description { 34 | font-size: 1.7em; 35 | height: auto; 36 | line-height: 120%; 37 | margin: 0 0 20px; 38 | width: 100%; 39 | font-weight: 100; 40 | } 41 | #author-info { 42 | margin-bottom: 40px; 43 | } 44 | .page-header { 45 | position: relative; 46 | padding-bottom: 40px; 47 | 48 | .avatar { 49 | display: block; 50 | position: absolute; 51 | top: 5px; 52 | left: -65px; 53 | } 54 | } 55 | .page-header h1, #author-description h2 { 56 | margin-top: 0; 57 | padding-top: 0; 58 | } 59 | .page-title { 60 | margin-bottom: 0; 61 | padding-bottom: 0; 62 | } 63 | -------------------------------------------------------------------------------- /sass/_integrations.scss: -------------------------------------------------------------------------------- 1 | .syn-link { 2 | .svg-icon { 3 | width: 15px; 4 | height: 15px; 5 | } 6 | } 7 | 8 | ul.relsyn { 9 | display: inline-block; 10 | margin: 0; 11 | padding: 0; 12 | 13 | li { 14 | display: inline-block; 15 | list-style: none; 16 | margin-left: 5px; 17 | 18 | svg { 19 | height: 1rem; 20 | width: 1rem; 21 | } 22 | } 23 | } 24 | 25 | .post-kind .entry-reaction { 26 | line-height: 27px; 27 | border-bottom: inset #D6D6D6; 28 | 29 | .svg-icon { 30 | display: block; 31 | width: 45px; 32 | height: 45px; 33 | font-style: normal; 34 | position: absolute; 35 | left: -65px; 36 | top: 25px; 37 | 38 | svg { 39 | fill: #555; 40 | } 41 | } 42 | 43 | a { 44 | color: #21759B; 45 | } 46 | 47 | header { 48 | margin-bottom: 20px; 49 | } 50 | } 51 | 52 | #page .post-kind img.avatar { 53 | display: none; 54 | } -------------------------------------------------------------------------------- /sass/_main.scss: -------------------------------------------------------------------------------- 1 | a { 2 | color: #555; 3 | } 4 | a:hover { 5 | text-decoration: none; 6 | } 7 | dl { 8 | margin-bottom: 18px; 9 | } 10 | dt { 11 | font-weight: bold; 12 | } 13 | dd { 14 | margin-left: 25px; 15 | } 16 | hr { 17 | margin: 18px 0; 18 | border: 0; 19 | border-top: 1px solid #eee; 20 | border-bottom: 1px solid #fff; 21 | } 22 | abbr { 23 | font-variant: small-caps; 24 | &[title] { 25 | cursor: help; 26 | border-bottom: 1px dotted #999; 27 | } 28 | } 29 | blockquote { 30 | font-family: Georgia,"Times New Roman",Times,serif; 31 | padding: 0 0 0 15px; 32 | margin: 0 0 18px 40px; 33 | position: relative; 34 | font-style: italic; 35 | &:before { 36 | display: block; 37 | content: "\201C"; 38 | font-size: 100px; 39 | position: absolute; 40 | left: -40px; 41 | top: 30px; 42 | font-style: normal; 43 | } 44 | p { 45 | margin-bottom: 0; 46 | font-size: 16px; 47 | font-weight: 300; 48 | } 49 | } 50 | cite { 51 | font-style: normal; 52 | } 53 | blockquote small, blockquote cite, .post-format-content cite { 54 | display: block; 55 | color: #999; 56 | font-style: normal; 57 | font-size: 0.9em; 58 | &:before { 59 | content: '\2014 \00A0'; 60 | } 61 | } 62 | figure.quote { 63 | background-color: #F5F5F5; 64 | height: auto; 65 | padding: 34px; 66 | margin: 0px; 67 | border-bottom: 1px solid rgba(0, 0, 0, 0.15); 68 | 69 | blockquote { 70 | margin: 0px; 71 | padding: 0px; 72 | 73 | &:before { 74 | content: none; 75 | } 76 | p { 77 | font-size: 22px; 78 | } 79 | p:first-child { 80 | padding-top: 0px; 81 | margin-top: 0px; 82 | } 83 | } 84 | 85 | figcaption.quote-caption { 86 | padding-top: 30px; 87 | } 88 | } 89 | pre { 90 | font-family: "Courier 10 Pitch", Courier, monospace; 91 | font-size: 16px; 92 | background-color: #f5f5f5; 93 | display: block; 94 | line-height: 18px; 95 | margin: 2em 0; 96 | padding: 14px; 97 | white-space: pre-wrap; 98 | word-wrap: break-word; 99 | } 100 | code { 101 | font-family: "Courier 10 Pitch", Courier, monospace; 102 | word-wrap: break-word; 103 | } 104 | ins { 105 | background: #fff9c0; 106 | text-decoration: none; 107 | } 108 | h1, h2, h3, h4, h5 { 109 | font-weight: 200; 110 | } 111 | h1 { 112 | font-size: 30px; 113 | } -------------------------------------------------------------------------------- /sass/_media.scss: -------------------------------------------------------------------------------- 1 | .entry-header .entry-media { 2 | padding: 0px; 3 | margin: 0px auto; 4 | text-align: center; 5 | background-color: #F5F5F5; 6 | @include custom-rounded($border-radius, $border-radius, 0px, 0px); 7 | iframe, object, embed { 8 | margin: 0px auto; 9 | text-align: center; 10 | } 11 | img, .wp-caption { 12 | margin: 0 auto; 13 | max-width: 100%; 14 | height: auto; 15 | padding: 0; 16 | } 17 | } 18 | 19 | .entry-media { 20 | img { 21 | width: 100%; 22 | } 23 | 24 | img, iframe, object, embed { 25 | margin-top: 20px; 26 | } 27 | 28 | img.alignright { 29 | margin-right: 34px; 30 | } 31 | 32 | img.alignleft { 33 | margin-left: 34px; 34 | } 35 | } 36 | 37 | .wp-audio-shortcode { 38 | margin: 20px auto; 39 | } 40 | 41 | .entry-content { 42 | iframe, object, embed { 43 | max-width: 100%; 44 | } 45 | } 46 | 47 | figure { 48 | margin: 0px; 49 | padding: 0px; 50 | } 51 | 52 | /* =Images 53 | -------------------------------------------------------------- */ 54 | 55 | a img { 56 | border: 0 none; 57 | } 58 | p img { 59 | margin-bottom: 0.5em; /* a small bottom margin prevents content floating under images */ 60 | } 61 | /* 62 | Resize images to fit the main content area. 63 | - Applies only to images uploaded via WordPress by targeting size-* classes. 64 | - Other images will be left alone. Use "size-auto" class to apply to other images. 65 | */ 66 | img.size-auto, 67 | img.size-full, 68 | img.size-large, 69 | img.size-medium, 70 | .attachment img, 71 | .widget-area img, 72 | .wp-caption, 73 | .post img, 74 | .page img { 75 | max-width: 100%; /* When images are too wide for containing element, force them to fit. */ 76 | height: auto; /* Override height to match resized width for correct aspect ratio. */ 77 | } 78 | img.aligncenter, 79 | img.attachment-thumbnail, 80 | img.size-thumbnail, 81 | .wp-caption.aligncenter img, 82 | .wp-caption.alignnone img, 83 | .media-attachment img, 84 | .entry-attachment img { 85 | @include box-shadow(0, 1px, 4px, 0, rgba(0, 0, 0, 0.2)); 86 | } 87 | .wp-caption .wp-caption-text, 88 | .gallery-caption, 89 | .entry-caption, 90 | .entry-media figcaption { 91 | padding: 0px; 92 | margin: 0px; 93 | text-align: center; 94 | font-style: italic; 95 | font-size: 12px; 96 | line-height: 2; 97 | color: #777; 98 | } 99 | div.aligncenter, .gallery { 100 | padding-top: 1em; 101 | padding-bottom: 1em; 102 | } 103 | .wp-smiley { 104 | margin: 0; 105 | border: 0; 106 | vertical-align: middle; 107 | } 108 | #page img.avatar { 109 | @include box-shadow(0, 1px, 5px, 0, rgba(0,0,0,0.2)); 110 | @include rounded(500px); 111 | } 112 | 113 | /* Image Attachments */ 114 | .image-attachment div.entry-meta { 115 | float: left; 116 | } 117 | .image-attachment nav { 118 | float: right; 119 | margin: 0 30px 1em 0; 120 | } 121 | .image-attachment .entry-content { 122 | clear: both; 123 | } 124 | .image-attachment .entry-content .entry-attachment { 125 | text-align: center; 126 | } 127 | .entry-content .media-attachment iframe, 128 | .entry-content .media-attachment object, 129 | .entry-content .media-attachment embed { 130 | display: block; 131 | margin: 15px auto; 132 | padding: 0; 133 | text-align: center; 134 | background-color: #444; 135 | background-image: -moz-linear-gradient(top,#555,#333); 136 | background-image: -webkit-gradient(linear,left top,left bottom,from(#555),to(#333)); 137 | filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr="#555555",endColorStr="#333333"); 138 | } 139 | 140 | .entry-meta .avatar { 141 | display: none; 142 | } 143 | 144 | /*-------------------------------------------------------------- 145 | ## Galleries 146 | --------------------------------------------------------------*/ 147 | 148 | .gallery { 149 | clear: both; 150 | overflow: hidden; 151 | margin: 0 auto; 152 | } 153 | 154 | .gallery .gallery-item { 155 | overflow: hidden; 156 | float: left; 157 | margin: 10px 0 0; 158 | text-align: center; 159 | list-style: none; 160 | } 161 | 162 | .gallery-caption { 163 | font-size: 11px; 164 | } 165 | 166 | /* 167 | Image sizes depending on the number of columns 168 | Based on Hybrid theme 169 | */ 170 | .gallery-columns-0 .gallery-item { 171 | width: 100%; 172 | } 173 | .gallery-columns-1 .gallery-item { 174 | width: 100%; 175 | } 176 | .gallery-columns-2 .gallery-item { 177 | width: 50%; 178 | } 179 | .gallery-columns-3 .gallery-item { 180 | width: 33.33%; 181 | } 182 | .gallery-columns-4 .gallery-item { 183 | width: 25%; 184 | } 185 | .gallery-columns-5 .gallery-item { 186 | width: 20%; 187 | } 188 | .gallery-columns-6 .gallery-item { 189 | width: 16.66%; 190 | } 191 | .gallery-columns-7 .gallery-item { 192 | width: 14.28%; 193 | } 194 | .gallery-columns-8 .gallery-item { 195 | width: 12.5%; 196 | } 197 | .gallery-columns-9 .gallery-item { 198 | width: 11.11%; 199 | } 200 | .gallery-columns-10 .gallery-item { 201 | width: 10%; 202 | } 203 | .gallery-columns-11 .gallery-item { 204 | width: 9.09%; 205 | } 206 | .gallery-columns-12 .gallery-item { 207 | width: 8.33%; 208 | } 209 | .gallery-columns-13 .gallery-item { 210 | width: 7.69%; 211 | } 212 | .gallery-columns-14 .gallery-item { 213 | width: 7.14%; 214 | } 215 | .gallery-columns-15 .gallery-item { 216 | width: 6.66%; 217 | } 218 | .gallery-columns-16 .gallery-item { 219 | width: 6.25%; 220 | } 221 | .gallery-columns-17 .gallery-item { 222 | width: 5.88%; 223 | } 224 | .gallery-columns-18 .gallery-item { 225 | width: 5.55%; 226 | } 227 | .gallery-columns-19 .gallery-item { 228 | width: 5.26%; 229 | } 230 | .gallery-columns-20 .gallery-item { 231 | width: 5%; 232 | } 233 | .gallery-columns-21 .gallery-item { 234 | width: 4.76%; 235 | } 236 | .gallery-columns-22 .gallery-item { 237 | width: 4.54%; 238 | } 239 | .gallery-columns-23 .gallery-item { 240 | width: 4.34%; 241 | } 242 | .gallery-columns-24 .gallery-item { 243 | width: 4.16%; 244 | } 245 | .gallery-columns-25 .gallery-item { 246 | width: 4%; 247 | } 248 | .gallery-columns-26 .gallery-item { 249 | width: 3.84%; 250 | } 251 | .gallery-columns-27 .gallery-item { 252 | width: 3.7%; 253 | } 254 | .gallery-columns-28 .gallery-item { 255 | width: 3.57%; 256 | } 257 | .gallery-columns-29 .gallery-item { 258 | width: 3.44%; 259 | } 260 | .gallery-columns-30 .gallery-item { 261 | width: 3.33%; 262 | } 263 | -------------------------------------------------------------------------------- /sass/_menu.scss: -------------------------------------------------------------------------------- 1 | /* =Menu 2 | -------------------------------------------------------------- */ 3 | 4 | #access { 5 | display: block; 6 | width: 100%; 7 | @include border-shadow-bottom; 8 | float: left; 9 | margin-bottom: 50px; 10 | z-index: 3; 11 | position: relative; 12 | ul { 13 | margin: 0; 14 | padding-left: 0px; 15 | list-style: none outside none; 16 | z-index: 4; 17 | ul { 18 | background-color: #f0f0f0; 19 | border: 1px #ccc solid; 20 | text-shadow: 0 1px 0 #fff; 21 | display: none; 22 | float: left; 23 | position: absolute; 24 | top: 2em; 25 | left: 0; 26 | @include box-shadow(0, 5px, 25px, 0, rgba(0,0,0,0.2)); 27 | @include rounded($border-radius); 28 | ul { 29 | left: 100%; 30 | top: 0; 31 | } 32 | li { 33 | a { 34 | color: #777; 35 | line-height: 1em; 36 | padding: .4em .4em .4em 1em; 37 | width: 15em; 38 | height: auto; 39 | @include border-shadow-top; 40 | font-weight: 300; 41 | } 42 | &:first-child a { 43 | border: 0 none; 44 | box-shadow: none; 45 | } 46 | a:hover, &.current_page_item a { 47 | color: #444; 48 | } 49 | } 50 | } 51 | } 52 | li { 53 | display: block; 54 | float: left; 55 | position: relative; 56 | font-weight: 300; 57 | } 58 | a, a:visited { 59 | display: block; 60 | line-height: 2em; 61 | padding-right: 1.5em; 62 | text-decoration: none; 63 | } 64 | } 65 | #access ul li:hover > ul, 66 | #access ul li:focus > ul, 67 | #access ul li.focus > ul { 68 | display: block; 69 | } 70 | -------------------------------------------------------------------------------- /sass/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin rounded($rad) { 2 | -moz-border-radius: $rad; 3 | -webkit-border-radius: $rad; 4 | -o-border-radius: $rad; 5 | -ms-border-radius: $rad; 6 | -khtml-border-radius: $rad; 7 | border-radius: $rad; 8 | } 9 | 10 | @mixin custom-rounded($tl, $tr, $br, $bl) { 11 | -moz-border-radius: $tl $tr $br $bl; 12 | -webkit-border-radius: $tl $tr $br $bl; 13 | -o-border-radius: $tl $tr $br $bl; 14 | -ms-border-radius: $tl $tr $br $bl; 15 | -khtml-border-radius: $tl $tr $br $bl; 16 | border-radius: $tl $tr $br $bl; 17 | } 18 | 19 | @mixin box-shadow($hor-len, $ver-len, $blur, $spread, $color) { 20 | -webkit-box-shadow: $hor-len $ver-len $blur $spread $color; 21 | -moz-box-shadow: $hor-len $ver-len $blur $spread $color; 22 | box-shadow: $hor-len $ver-len $blur $spread $color; 23 | } 24 | 25 | @mixin reset-box-shadow { 26 | -moz-box-shadow: none; 27 | -webkit-box-shadow: none; 28 | box-shadow: none; 29 | } 30 | 31 | @mixin reset-rounded { 32 | -moz-border-radius: none; 33 | -webkit-border-radius: none; 34 | -o-border-radius: none; 35 | -ms-border-radius: none; 36 | -khtml-border-radius: none; 37 | border-radius: none; 38 | } 39 | 40 | @mixin border-shadow-top { 41 | border-top: 1px solid #fff; 42 | -moz-box-shadow: #ccc 0 -1px 0 0; 43 | -webkit-box-shadow: #ccc 0 -1px 0 0; 44 | box-shadow: #ccc 0 -1px 0 0; 45 | } 46 | 47 | @mixin border-shadow-bottom { 48 | border-bottom: 1px solid #ccc; 49 | -moz-box-shadow: #FFF 0 1px 0 0; 50 | -webkit-box-shadow: #FFF 0 1px 0 0; 51 | box-shadow: #FFF 0 1px 0 0; 52 | } -------------------------------------------------------------------------------- /sass/_posts.scss: -------------------------------------------------------------------------------- 1 | /* =Content 2 | -------------------------------------------------------------- */ 3 | 4 | article.page, 5 | article.post, 6 | article.attachment { 7 | @include box-shadow(0, 1px, 5px, 0, rgba(0,0,0,0.2)); 8 | position: relative; 9 | @include rounded($border-radius); 10 | background-color: white; 11 | border: 1px solid #ccc; 12 | } 13 | article { 14 | address { 15 | display: inline; 16 | font-style: normal; 17 | } 18 | } 19 | .sticky { 20 | } 21 | article, aside { 22 | display: block; 23 | position: relative; 24 | } 25 | header .entry-meta { 26 | padding-bottom: 14px; 27 | } 28 | footer.entry-meta { 29 | padding: 0px 34px; 30 | margin-bottom: 34px; 31 | } 32 | .entry-content, 33 | .entry-summary, 34 | .entry-title { 35 | color: #3f3f3f; 36 | 37 | a { 38 | color: $blue; 39 | text-decoration: none; 40 | &:hover { 41 | text-decoration: underline; 42 | } 43 | } 44 | } 45 | .entry-content, 46 | .entry-summary { 47 | font-size: 1em; 48 | line-height: 27px; 49 | margin-bottom: 34px; 50 | } 51 | .entry-content, 52 | .entry-title, 53 | .entry-meta, 54 | .entry-summary, 55 | .entry-reaction { 56 | padding: 0 34px; 57 | text-shadow: none; 58 | } 59 | .entry-meta { 60 | clear: both; 61 | display: block; 62 | font-size: 0.9em; 63 | 64 | &, a { 65 | color: #777; 66 | } 67 | } 68 | .entry-header { 69 | .entry-title, .entry-title a { 70 | -webkit-hyphens: auto; 71 | -moz-hyphens: auto; 72 | -ms-hyphens: auto; 73 | hyphens: auto; 74 | text-overflow: ellipsis; 75 | overflow: hidden; 76 | padding-top: 25px; 77 | font-size: 40px; 78 | margin: 0; 79 | .format-quote &, .format-video &, .format-audio &, .format-image & { 80 | font-size: 22px; 81 | padding-top: 30px; 82 | } 83 | } 84 | } 85 | #content nav { 86 | display: block; 87 | overflow: hidden; 88 | 89 | .nav-previous { 90 | float: left; 91 | width: 50%; 92 | } 93 | 94 | .nav-next { 95 | float: right; 96 | text-align: right; 97 | width: 50%; 98 | } 99 | } 100 | #nav-above { 101 | clear: both; 102 | 103 | .nav-previous, .nav-next { 104 | margin: 0 0 40px; 105 | } 106 | } 107 | #nav-below { 108 | clear: both; 109 | 110 | .nav-previous, .nav-next { 111 | margin: 40px 0 0; 112 | } 113 | } 114 | .nav-previous, .nav-next, 115 | .previous-image, .next-image { 116 | font-size: 12px; 117 | } 118 | .page-link { 119 | clear: both; 120 | margin: 0 0 1em; 121 | } 122 | .page .edit-link { 123 | clear: both; 124 | display: block; 125 | } 126 | body { 127 | &.single, &.page { 128 | #content { 129 | .post, .page { 130 | margin-bottom: 0px; 131 | } 132 | } 133 | } 134 | } 135 | #content { 136 | .post, .page { 137 | margin-bottom: 60px; 138 | } 139 | .post:after, .page:after { 140 | content: "."; 141 | display: block; 142 | clear: both; 143 | visibility: hidden; 144 | line-height: 0; 145 | height: 0; 146 | } 147 | } 148 | 149 | /* 404 page */ 150 | .error404 .widget { 151 | float: left; 152 | width: 33%; 153 | } 154 | .error404 .widget .widgettitle, 155 | .error404 .widget ul { 156 | margin-right: 1em; 157 | } 158 | .error404 .widget_tag_cloud { 159 | clear: both; 160 | float: none; 161 | width: 100%; 162 | } 163 | 164 | /* Notices */ 165 | .post .notice, 166 | .error404 #searchform { 167 | background: #eee; 168 | display: block; 169 | padding: 1em; 170 | } -------------------------------------------------------------------------------- /sass/_print.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * lend from HTML5 boilerplate and tweaked a bit 3 | */ 4 | @media print { 5 | * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */ 6 | a, a:visited { text-decoration: underline; } 7 | a[href]:after { content: " (" attr(href) ")"; } 8 | abbr[title]:after { content: " (" attr(title) ")"; } 9 | .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */ 10 | pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } 11 | thead { display: table-header-group; } /* h5bp.com/t */ 12 | tr, img { page-break-inside: avoid; } 13 | img { max-width: 100% !important; } 14 | @page { margin: 0.5cm; } 15 | p, h2, h3 { orphans: 3; widows: 3; } 16 | h2, h3 { page-break-after: avoid; } 17 | .widget-area, #branding, #commentform, #colophon { display: none; } 18 | #content { margin: 0px; } 19 | #page { width: auto; } 20 | } -------------------------------------------------------------------------------- /sass/_responsive.scss: -------------------------------------------------------------------------------- 1 | /* Tablet Portrait size to standard 960 (devices and browsers) */ 2 | @media only screen and (max-width: 959px) { 3 | body, .single-column, .multi-column { 4 | @import "responsive_959"; 5 | } 6 | } 7 | 8 | /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ 9 | @media only screen and (max-width: 767px) { 10 | body, .single-column, .multi-column { 11 | @import "responsive_767"; 12 | } 13 | } 14 | 15 | /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ 16 | @media only screen and (max-width: 479px) { 17 | body, .single-column, .multi-column { 18 | @import "responsive_479"; 19 | } 20 | } -------------------------------------------------------------------------------- /sass/_responsive_479.scss: -------------------------------------------------------------------------------- 1 | h1.section-heading { 2 | font-size: 20px; 3 | } 4 | #site-title { 5 | a { 6 | font-size: 0.7em; 7 | } 8 | margin-bottom: 20px; 9 | } 10 | #branding { 11 | margin-top: 50px; 12 | } 13 | #site-description { 14 | display: none; 15 | } 16 | #page { 17 | position: inherit; 18 | } 19 | .entry-header .entry-title { 20 | a { 21 | font-size: 30px; 22 | } 23 | font-size: 30px; 24 | line-height: 1; 25 | } 26 | iframe, object, embed { 27 | height: auto; 28 | max-width: 100%; 29 | } 30 | -------------------------------------------------------------------------------- /sass/_responsive_767.scss: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 0.9em; 3 | } 4 | #site-title { 5 | a { 6 | font-size: 0.7em; 7 | line-height: 1; 8 | } 9 | margin-bottom: 30px; 10 | } 11 | #site-description { 12 | font-size: 1.3em; 13 | } 14 | article.format-audio { 15 | .entry-media { 16 | padding-left: 0px; 17 | padding-right: 0px; 18 | } 19 | } 20 | #page { 21 | width: auto; 22 | margin: 0 5px; 23 | } 24 | #main .widget-area { 25 | width: 100%; 26 | } 27 | article.post, 28 | article.page { 29 | margin: 0; 30 | padding: 0; 31 | } 32 | .entry-title, 33 | .entry-content, 34 | .entry-summary, 35 | .entry-meta, 36 | footer.entry-meta { 37 | color: inherit; 38 | text-shadow: inherit; 39 | margin: 0px; 40 | padding-left: 15px; 41 | padding-right: 15px; 42 | } 43 | footer.entry-meta { 44 | padding-bottom: 15px; 45 | } 46 | .post:hover .entry-meta, .post:hover .entry-meta a, 47 | .post .entry-meta, .post .entry-meta a { 48 | color: #777; 49 | } 50 | .entry-header .entry-title { 51 | padding-top: 15px; 52 | padding-bottom: 5px; 53 | a { 54 | font-size: 35px; 55 | } 56 | font-size: 35px; 57 | line-height: 1; 58 | } 59 | .format-quote { 60 | .entry-content { 61 | padding-top: 0; 62 | blockquote:first-child { 63 | padding: 15px; 64 | margin: 0 -15px 15px -15px; 65 | } 66 | } 67 | } 68 | 69 | /* Custom Post Types */ 70 | .format-aside, 71 | .format-link, 72 | .format-quote, 73 | .format-status { 74 | p:first-child { 75 | padding-top: 0px; 76 | margin-top: 0px; 77 | } 78 | } 79 | 80 | #page { 81 | position: inherit; 82 | } 83 | 84 | #access { 85 | position: absolute; 86 | top: 0; 87 | left: 0; 88 | border: none; 89 | @include rounded(0); 90 | background-color: #464646; 91 | z-index: 99999; 92 | } 93 | #access a, 94 | #access a:visited, 95 | #access a:hover, 96 | #access .section-heading a { 97 | color: #fff; 98 | text-shadow: none; 99 | border: none; 100 | text-decoration: none; 101 | } 102 | #access:target ul, 103 | #access.fokus ul { 104 | display: block; 105 | font-size: 17px; 106 | background-color: transparent; 107 | } 108 | #access .section-heading { 109 | clip: inherit; 110 | display: block; 111 | clear: both; 112 | float: none; 113 | width: 100%; 114 | margin: 0; 115 | background-color: #464646; 116 | } 117 | #access .section-heading a:before { 118 | font-family: 'Genericons'; 119 | content: '\f419'; 120 | margin-right: 10px; 121 | padding-left: 25px; 122 | } 123 | #access:target .section-heading { 124 | display: none; 125 | } 126 | #access li { 127 | float: inherit; 128 | margin: inherit; 129 | } 130 | #access ul { 131 | display: none; 132 | margin: inherit; 133 | padding-left: 25px; 134 | background-color: transparent; 135 | } 136 | #access ul ul { 137 | background-color: transparent; 138 | background-image: none; 139 | display: inherit; 140 | position: inherit; 141 | float: none; 142 | padding: inherit; 143 | margin-left: 10px; 144 | border: none; 145 | top: inherit; 146 | left: inherit; 147 | @include reset-box-shadow; 148 | border: none; 149 | } 150 | #access ul > li > a { 151 | border: none; 152 | margin: inherit; 153 | } 154 | #access ul ul ul { 155 | left: inherit; 156 | top: inherit; 157 | } 158 | #access ul ul a { 159 | line-height: 1em; 160 | height: auto; 161 | border: none; 162 | width: auto; 163 | } 164 | #access div > ul > li > a, 165 | #access div > ul > li > a:hover, 166 | #access div > ul > li > a:visited, 167 | #access .current_page_item > a, 168 | #access .current_page_ancestor > a, 169 | #access ul ul li a, 170 | #access ul ul li a:hover, 171 | #access ul ul li a:visited, 172 | #access ul ul li.current_page_item a { 173 | color: #fff; 174 | border-bottom: none; 175 | } 176 | #access ul ul li a { 177 | height: auto; 178 | border-top: none; 179 | @include reset-box-shadow; 180 | } 181 | -------------------------------------------------------------------------------- /sass/_responsive_959.scss: -------------------------------------------------------------------------------- 1 | #page { 2 | width: 670px; 3 | margin: 0px auto; 4 | } 5 | #sidebar { 6 | float: right; 7 | overflow: hidden; 8 | width: 100%; 9 | padding-top: 25px; 10 | margin-top: 25px; 11 | } 12 | #main .widget-area { 13 | float: left; 14 | overflow: hidden; 15 | width: 300px; 16 | } 17 | #secondary { 18 | padding-right: 69px; 19 | } 20 | #primary { 21 | width: auto; 22 | float: inherit; 23 | } 24 | #content { 25 | margin: 0; 26 | } 27 | .custom-logo-link { 28 | display: none; 29 | } 30 | .post, .error404, .sticky { 31 | &:before { 32 | content: none; 33 | } 34 | } 35 | .format-status .entry-meta .avatar { 36 | display: none; 37 | } 38 | .entry-content .avatar { 39 | display: none; 40 | } 41 | #site-image { 42 | width: auto; 43 | height: auto; 44 | max-width: 100%; 45 | } 46 | -------------------------------------------------------------------------------- /sass/_structure.scss: -------------------------------------------------------------------------------- 1 | /* =Structure 2 | -------------------------------------------------------------- */ 3 | 4 | main { 5 | display: block; 6 | } 7 | #page { 8 | display: block; 9 | margin: 0 auto; 10 | position: relative; 11 | width: 950px; 12 | } 13 | .single-column { 14 | #page { 15 | width: 670px; 16 | } 17 | 18 | #main { 19 | margin: 0; 20 | 21 | #sidebar { 22 | overflow: hidden; 23 | width: 100%; 24 | padding-top: 25px; 25 | margin-top: 25px; 26 | } 27 | 28 | #secondary { 29 | padding-right: 69px; 30 | } 31 | 32 | .widget-area { 33 | float: left; 34 | overflow: hidden; 35 | width: 300px; 36 | } 37 | } 38 | } 39 | #main { 40 | clear: both; 41 | } 42 | #primary { 43 | float: left; 44 | width: 710px; 45 | &.full-width { 46 | width: 100%; 47 | } 48 | } 49 | #content { 50 | margin: 0 40px 0 0; 51 | } 52 | #sidebar { 53 | float: right; 54 | overflow: hidden; 55 | width: 220px; 56 | } 57 | #main .widget-area { 58 | float: right; 59 | width: 220px; 60 | } 61 | 62 | /* Increase the size of the content area for templates without sidebars */ 63 | .full-width #content, 64 | .image-attachment #content, 65 | .error404 #content { 66 | margin: 0; 67 | } 68 | 69 | /* Text meant only for screen readers */ 70 | .screen-reader-text, 71 | .assistive-text { 72 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 73 | clip: rect(1px, 1px, 1px, 1px); 74 | position: absolute; 75 | } 76 | 77 | .screen-reader-text:focus, 78 | .assistive-text:focus { 79 | background-color: #f1f1f1; 80 | border-radius: 3px; 81 | box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 82 | clip: auto; 83 | color: #21759b; 84 | display: block; 85 | font-size: 14px; 86 | font-weight: bold; 87 | height: auto; 88 | line-height: normal; 89 | padding: 15px 23px 14px; 90 | position: fixed; 91 | left: 5px; 92 | top: 50px; 93 | text-decoration: none; 94 | text-transform: none; 95 | width: auto; 96 | z-index: 100000; /* Above WP toolbar */ 97 | } 98 | 99 | /* Alignment */ 100 | .alignleft { 101 | display: inline; 102 | float: left; 103 | margin-right: 1em; 104 | } 105 | .alignright { 106 | display: inline; 107 | float: right; 108 | margin-left: 1em; 109 | } 110 | .aligncenter, .alignnone { 111 | clear: both; 112 | display: block; 113 | margin-left: auto; 114 | margin-right: auto; 115 | } 116 | 117 | /* =Footer 118 | -------------------------------------------------------------- */ 119 | 120 | #colophon { 121 | clear: both; 122 | display: block; 123 | width: 100%; 124 | padding: 40px 0; 125 | font-size: 12px; 126 | text-align: center; 127 | } -------------------------------------------------------------------------------- /sass/_tables.scss: -------------------------------------------------------------------------------- 1 | /* =Tables 2 | -------------------------------------------------------------- */ 3 | 4 | table { 5 | width: 100%; 6 | overflow: scroll; 7 | overflow-x: scroll; 8 | background-color: transparent; 9 | margin-bottom: 18px; 10 | border: 1px solid #ddd; 11 | border-spacing: 0; 12 | border-collapse: separate; 13 | *border-collapse: collapsed; 14 | border-left: 0; 15 | table-layout: fixed; 16 | } 17 | table th, 18 | table td { 19 | padding: 8px; 20 | line-height: 18px; 21 | text-align: left; 22 | vertical-align: top; 23 | border-top: 1px solid #ddd; 24 | } 25 | table th { 26 | font-weight: bold; 27 | } 28 | table thead th { 29 | vertical-align: bottom; 30 | } 31 | table caption + thead tr:first-child th, 32 | table caption + thead tr:first-child td, 33 | table colgroup + thead tr:first-child th, 34 | table colgroup + thead tr:first-child td, 35 | table thead:first-child tr:first-child th, 36 | table thead:first-child tr:first-child td { 37 | border-top: 0; 38 | } 39 | table tbody + tbody { 40 | border-top: 2px solid #ddd; 41 | } 42 | table th, 43 | table td { 44 | padding: 4px 5px; 45 | border-left: 1px solid #ddd; 46 | } 47 | table caption + thead tr:first-child th, 48 | table caption + tbody tr:first-child th, 49 | table caption + tbody tr:first-child td, 50 | table colgroup + thead tr:first-child th, 51 | table colgroup + tbody tr:first-child th, 52 | table colgroup + tbody tr:first-child td, 53 | table thead:first-child tr:first-child th, 54 | table tbody:first-child tr:first-child th, 55 | table tbody:first-child tr:first-child td { 56 | border-top: 0; 57 | } 58 | table tbody tr:nth-child(odd) td, 59 | table tbody tr:nth-child(odd) th { 60 | background-color: #f9f9f9; 61 | } 62 | table tbody tr:hover td, 63 | table tbody tr:hover th { 64 | background-color: #f5f5f5; 65 | } -------------------------------------------------------------------------------- /sass/_vars.scss: -------------------------------------------------------------------------------- 1 | // colors 2 | $blue: #21759B; 3 | 4 | // pixels 5 | $border-radius: 3px; 6 | 7 | // fonts 8 | $main_font_family: "Helvetica Neue", Helvetica, Arial, sans-serif; 9 | $main_font-weight: 300; -------------------------------------------------------------------------------- /sass/_widgets.scss: -------------------------------------------------------------------------------- 1 | /* =Widgets 2 | -------------------------------------------------------------- */ 3 | 4 | .widget { 5 | display: block; 6 | padding-bottom: 40px; 7 | margin-bottom: 40px; 8 | @include border-shadow-bottom; 9 | h3 { 10 | font-size: 15px; 11 | font-weight: 500; 12 | margin: 0 0 10px; 13 | } 14 | } 15 | .widget-area { 16 | font-size: 0.8em; 17 | .widget_search { 18 | overflow: hidden; 19 | } 20 | ul, li { 21 | margin: 2px 0; 22 | padding: 0; 23 | list-style-position: outside; 24 | list-style-image: none; 25 | list-style-type: none; 26 | } 27 | li a { 28 | padding: 2px 0; 29 | display: block; 30 | } 31 | } -------------------------------------------------------------------------------- /sass/editor-style.scss: -------------------------------------------------------------------------------- 1 | @import "vars"; 2 | 3 | body#tinymce.wp-editor { 4 | font-family: $main_font_family; 5 | color: #555; 6 | font-weight: $main_font_weight; 7 | 8 | @import "main"; 9 | } -------------------------------------------------------------------------------- /sass/style.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Theme Name: @@name 3 | * Theme URI: @@homepage 4 | * Author: @@author 5 | * Author URI: @@author_url 6 | * Description: @@description 7 | * Version: @@version 8 | * License: @@license Version @@license_version 9 | * License URI: @@license_url 10 | * Tags: @@keywords 11 | * Text Domain: sempress 12 | * Tested up to: @@wordpress 13 | * Requires PHP: @@php 14 | * 15 | * This theme is based on the toolbox theme (http://wordpress.org/themes/toolbox) 16 | * and, like WordPress, licensed under the GPL. 17 | * 18 | * Use it to make something cool, have fun, and share what you've learned with others. 19 | */ 20 | 21 | /** 22 | * The font was graciously generated by Font Squirrel (http://www.fontsquirrel.com). We love those guys. 23 | */ 24 | @font-face { 25 | font-family: 'Genericons'; 26 | src: url('font/genericons-regular-webfont.eot'); 27 | src: url('font/genericons-regular-webfont.eot?#iefix') format('embedded-opentype'), 28 | url('font/genericons-regular-webfont.woff') format('woff'), 29 | url('font/genericons-regular-webfont.ttf') format('truetype'), 30 | url('font/genericons-regular-webfont.svg#genericonsregular') format('svg'); 31 | font-weight: normal; 32 | font-style: normal; 33 | } 34 | 35 | @import "vars"; 36 | @import "mixins"; 37 | 38 | body { 39 | font-family: $main_font_family; 40 | color: #555; 41 | background-color: #f0f0f0; 42 | background-image: url("img/noise.png"); 43 | text-shadow: 0 1px 0 #fff; 44 | font-weight: $main_font_weight; 45 | word-wrap: break-word; 46 | } 47 | 48 | @import "main"; 49 | 50 | @import "header"; 51 | @import "structure"; 52 | @import "menu"; 53 | @import "tables"; 54 | @import "posts"; 55 | @import "custom_post_formats"; 56 | @import "media"; 57 | @import "forms"; 58 | @import "comments"; 59 | @import "widgets"; 60 | @import "integrations"; 61 | @import "compatibility"; 62 | @import "responsive"; 63 | @import "print"; 64 | -------------------------------------------------------------------------------- /sempress/404.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 |
17 |
18 |

19 |
20 | 21 |
22 |

23 | 24 | 25 | 26 | 27 | 28 |
29 |

30 |
    31 | 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?> 32 |
33 |
34 | 35 | ' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'sempress' ), convert_smilies( ':)' ) ) . '

'; 38 | the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=$archive_content" ); 39 | ?> 40 | 41 | 42 | 43 |
44 |
45 | 46 |
47 |
48 | 49 | 50 | -------------------------------------------------------------------------------- /sempress/archive.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 |
> 20 | 21 | 22 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 |
50 |
51 |

52 |
53 | 54 |
55 |

56 | 57 |
58 |
59 | 60 | 61 | 62 |
63 |
64 | 65 | 70 | 71 | -------------------------------------------------------------------------------- /sempress/author.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 | 17 | 18 | 27 | 28 | 35 | 36 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 |

66 |
67 | 68 |
69 |

70 | 71 |
72 |
73 | 74 | 75 | 76 |
77 |
78 | 79 | 84 | 85 | -------------------------------------------------------------------------------- /sempress/category.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 | 17 | 18 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 |
49 |
50 |

51 |
52 | 53 |
54 |

55 | 56 |
57 |
58 | 59 | 60 | 61 |
62 |
63 | 64 | 69 | 70 | -------------------------------------------------------------------------------- /sempress/comments.php: -------------------------------------------------------------------------------- 1 | 16 |
17 | 18 |

19 |
20 | 28 | 29 | 30 | 31 | 32 |

33 | ' . get_the_title() . '' ); 35 | ?> 36 |

37 | 38 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 39 | 44 | 45 | 46 |
    47 | 'sempress_comment', 'format' => 'html5' ) ); 55 | ?> 56 |
57 | 58 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 59 | 64 | 65 | 66 | 67 | 68 | 72 |

73 | 74 | 75 | 'html5' ) ); ?> 76 | 77 | 78 | -------------------------------------------------------------------------------- /sempress/content-aside.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
> 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | ', '

' ); ?> 24 | →', 'sempress' ) ); ?> 25 | '' ) ); ?> 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /sempress/content-audio.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
> 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 | 19 |
20 | 21 |
22 | 23 |
24 | →', 'sempress' ) ); ?> 25 | '' ) ); ?> 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /sempress/content-chat.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
> 11 | 12 | 13 |
14 | ', '

' ); ?> 15 | →', 'sempress' ) ); ?> 16 | '' ) ); ?> 17 |
18 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /sempress/content-gallery.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
> 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | →', 'sempress' ) ); ?> 24 | '', 'link_before' => '', 'link_after' => '' ) ); ?> 25 |
26 | 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /sempress/content-image.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
> 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
post_excerpt; ?>
21 |
22 |
23 | →', 'sempress' ) ); ?> 24 | '' ) ); ?> 25 |
26 | 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /sempress/content-link.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
> 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | ', '

' ); ?> 24 | →', 'sempress' ) ); ?> 25 | '' ) ); ?> 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /sempress/content-page.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
> 13 | 14 | 15 | 16 |
17 | 18 |
19 | 20 | ', '' ); ?> 21 | 22 |
23 | 24 | '' ) ); ?> 25 | ', '' ); ?> 26 |
27 | 28 |
29 | -------------------------------------------------------------------------------- /sempress/content-quote.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
> 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | ', '

' ); ?> 24 | →', 'sempress' ) ); ?> 25 | '' ) ); ?> 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /sempress/content-single.php: -------------------------------------------------------------------------------- 1 | 9 |
itemref="site-publisher"> 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | ', '' ); ?> 18 |
19 | →', 'sempress' ) ); ?> 20 | '' ) ); ?> 21 |
22 | 23 | 24 | 25 |
26 | -------------------------------------------------------------------------------- /sempress/content-status.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
> 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | ', '

' ); ?> 24 | →', 'sempress' ) ); ?> 25 | '' ) ); ?> 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /sempress/content-video.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
> 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 | ', '

' ); ?> 20 | →', 'sempress' ) ); ?> 21 | '' ) ); ?> 22 |
23 | 24 | 25 | 26 |
27 | -------------------------------------------------------------------------------- /sempress/content.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /sempress/css/editor-style.css: -------------------------------------------------------------------------------- 1 | body#tinymce.wp-editor{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#555;font-weight:300}body#tinymce.wp-editor a{color:#555}body#tinymce.wp-editor a:hover{text-decoration:none}body#tinymce.wp-editor dl{margin-bottom:18px}body#tinymce.wp-editor dt{font-weight:bold}body#tinymce.wp-editor dd{margin-left:25px}body#tinymce.wp-editor hr{margin:18px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}body#tinymce.wp-editor abbr{font-variant:small-caps}body#tinymce.wp-editor abbr[title]{cursor:help;border-bottom:1px dotted #999}body#tinymce.wp-editor blockquote{font-family:Georgia,"Times New Roman",Times,serif;padding:0 0 0 15px;margin:0 0 18px 40px;position:relative;font-style:italic}body#tinymce.wp-editor blockquote:before{display:block;content:"\201C";font-size:100px;position:absolute;left:-40px;top:30px;font-style:normal}body#tinymce.wp-editor blockquote p{margin-bottom:0;font-size:16px;font-weight:300}body#tinymce.wp-editor cite{font-style:normal}body#tinymce.wp-editor blockquote small,body#tinymce.wp-editor blockquote cite,body#tinymce.wp-editor .post-format-content cite{display:block;color:#999;font-style:normal;font-size:0.9em}body#tinymce.wp-editor blockquote small:before,body#tinymce.wp-editor blockquote cite:before,body#tinymce.wp-editor .post-format-content cite:before{content:'\2014 \00A0'}body#tinymce.wp-editor figure.quote{background-color:#F5F5F5;height:auto;padding:34px;margin:0px;border-bottom:1px solid rgba(0,0,0,0.15)}body#tinymce.wp-editor figure.quote blockquote{margin:0px;padding:0px}body#tinymce.wp-editor figure.quote blockquote:before{content:none}body#tinymce.wp-editor figure.quote blockquote p{font-size:22px}body#tinymce.wp-editor figure.quote blockquote p:first-child{padding-top:0px;margin-top:0px}body#tinymce.wp-editor figure.quote figcaption.quote-caption{padding-top:30px}body#tinymce.wp-editor pre{font-family:"Courier 10 Pitch", Courier, monospace;font-size:16px;background-color:#f5f5f5;display:block;line-height:18px;margin:2em 0;padding:14px;white-space:pre-wrap;word-wrap:break-word}body#tinymce.wp-editor code{font-family:"Courier 10 Pitch", Courier, monospace;word-wrap:break-word}body#tinymce.wp-editor ins{background:#fff9c0;text-decoration:none}body#tinymce.wp-editor h1,body#tinymce.wp-editor h2,body#tinymce.wp-editor h3,body#tinymce.wp-editor h4,body#tinymce.wp-editor h5{font-weight:200}body#tinymce.wp-editor h1{font-size:30px} 2 | -------------------------------------------------------------------------------- /sempress/entry-footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 41 | -------------------------------------------------------------------------------- /sempress/entry-header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |

6 | 7 | 8 | 11 | 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /sempress/font/genericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/font/genericons-regular-webfont.eot -------------------------------------------------------------------------------- /sempress/font/genericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/font/genericons-regular-webfont.ttf -------------------------------------------------------------------------------- /sempress/font/genericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/font/genericons-regular-webfont.woff -------------------------------------------------------------------------------- /sempress/footer.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /sempress/full-width-page.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 |
> 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /sempress/header.php: -------------------------------------------------------------------------------- 1 | section and everything up till
8 | * 9 | * @package SemPress 10 | * @since SemPress 1.0.0 11 | */ 12 | ?> 13 | > 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | > 24 | 25 |
26 | 27 | 52 | 53 |
54 | -------------------------------------------------------------------------------- /sempress/image.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 | 17 | 18 |
itemscope itemtype="http://schema.org/ImageObject"> 19 |
20 |

21 | 22 | 37 | 38 | 42 |
43 | 44 |
45 | 46 |
47 |
48 | $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); 54 | foreach ( $attachments as $k => $attachment ) { 55 | if ( $attachment->ID == $post->ID ) { 56 | break; 57 | } 58 | } 59 | $k++; 60 | // If there is more than 1 attachment in a gallery 61 | if ( count( $attachments ) > 1 ) { 62 | if ( isset( $attachments[ $k ] ) ) { 63 | // get the URL of the next image attachment 64 | $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); 65 | } else { 66 | // or get the URL of the first image attachment 67 | $next_attachment_url = get_attachment_link( $attachments[0]->ID ); 68 | } 69 | } else { 70 | // or, if there's only 1 image, get the URL of the image 71 | $next_attachment_url = wp_get_attachment_url(); 72 | } 73 | ?> 74 | 75 | ID, array( $attachment_size, $attachment_size ), null, array( 'itemprop' => 'image contentURL' ) ); // filterable image width with, essentially, no limit for image height. 78 | ?> 79 |
80 | 81 | post_excerpt ) ) : ?> 82 |
83 | 84 |
85 | 86 |
87 | 88 | 89 | '' ) ); ?> 90 | 91 |
92 | 93 |
94 | 95 | Post a comment or leave a trackback: Trackback URL.', 'sempress' ), get_trackback_url() ); ?> 96 | 97 | Trackback URL.', 'sempress' ), get_trackback_url() ); ?> 98 | 99 | post a comment.', 'sempress' ); ?> 100 | 101 | 102 | 103 | ', '' ); ?> 104 |
105 |
106 | 107 | 108 | 109 | 110 | 111 |
112 |
113 | 114 | 115 | -------------------------------------------------------------------------------- /sempress/img/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/img/noise.png -------------------------------------------------------------------------------- /sempress/inc/compat.php: -------------------------------------------------------------------------------- 1 | /i', '', $form ); 184 | $form = preg_replace( '/ $value ) { 260 | echo ' ' . esc_attr( $key ) . '="' . esc_attr( join( ' ', $value ) ) . '"'; 261 | } 262 | } 263 | 264 | /** 265 | * Add `p-category` to tags links 266 | * 267 | * @link https://www.webrocker.de/2016/05/13/add-class-attribute-to-wordpress-the_tags-markup/ 268 | * 269 | * @param array $links 270 | * @return array 271 | */ 272 | function sempress_term_links_tag( $links ) { 273 | $post = get_post(); 274 | $terms = get_the_terms( $post->ID, 'post_tag' ); 275 | 276 | if ( is_wp_error( $terms ) ) { 277 | return $terms; 278 | } 279 | 280 | if ( empty( $terms ) ) { 281 | return false; 282 | } 283 | 284 | $links = array(); 285 | foreach ( $terms as $term ) { 286 | $link = get_term_link( $term ); 287 | 288 | if ( is_wp_error( $link ) ) { 289 | return $link; 290 | } 291 | 292 | $links[] = ''; 293 | } 294 | 295 | return $links; 296 | } 297 | add_filter( 'term_links-post_tag', 'sempress_term_links_tag' ); 298 | 299 | function sempress_main_class( $class = '' ) { 300 | // Separates class names with a single space, collates class names for body element 301 | echo ' class="' . join( ' ', sempress_get_main_class( $class ) ) . '"'; 302 | } 303 | 304 | function sempress_get_main_class( $class = '' ) { 305 | $classes = array(); 306 | 307 | if ( is_singular() ) { 308 | $classes = sempress_get_post_classes( $classes ); 309 | } 310 | 311 | if ( ! empty( $class ) ) { 312 | if ( ! is_array( $class ) ) { 313 | $class = preg_split( '#\s+#', $class ); 314 | } 315 | $classes = array_merge( $classes, $class ); 316 | } else { 317 | // Ensure that we always coerce class to being an array. 318 | $class = array(); 319 | } 320 | 321 | $classes = array_map( 'esc_attr', $classes ); 322 | 323 | /** 324 | * Filters the list of CSS main class names for the current post or page. 325 | * 326 | * @since 2.8.0 327 | * 328 | * @param string[] $classes An array of main class names. 329 | * @param string[] $class An array of additional class names added to the main. 330 | */ 331 | $classes = apply_filters( 'sempress_main_class', $classes, $class ); 332 | 333 | return array_unique( $classes ); 334 | } 335 | -------------------------------------------------------------------------------- /sempress/index.php: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 |
> 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
44 |
45 |

46 |
47 | 48 |
49 |

50 | 51 |
52 |
53 | 54 | 55 | 56 |
57 |
58 | 59 | 64 | 65 | -------------------------------------------------------------------------------- /sempress/int/post-kinds.php: -------------------------------------------------------------------------------- 1 | %s
', Kind_View::get_display() ); 30 | } 31 | add_action( 'sempress_before_entry_content', 'sempress_post_kinds_content' ); 32 | 33 | /** 34 | * Adds `post-kind` classes to the array of post classes. 35 | * 36 | * @since SemPress 1.0.0 37 | */ 38 | function sempress_post_kinds_post_classes( $classes = array() ) { 39 | if ( Kind_View::get_display() ) { 40 | $classes[] = 'post-kind'; 41 | } 42 | 43 | return $classes; 44 | } 45 | add_filter( 'post_class', 'sempress_post_kinds_post_classes', 99 ); 46 | -------------------------------------------------------------------------------- /sempress/int/syndication-links.php: -------------------------------------------------------------------------------- 1 | | '; 35 | _e( 'Syndication Links', 'sempress' ); 36 | echo get_syndication_links( null, array( 'show_text_before' => null) ); 37 | } 38 | } 39 | add_action( 'sempress_entry_footer', 'sempress_syndication_links' ); 40 | -------------------------------------------------------------------------------- /sempress/js/functions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Theme functions file 3 | * 4 | * Contains handlers for navigation, accessibility, header sizing 5 | * footer widgets and Featured Content slider 6 | * 7 | */ 8 | ( function( $ ) { 9 | // Enable menu toggle for small screens. 10 | ( function() { 11 | var nav = $( '#primary-navigation' ), button, menu; 12 | if ( ! nav ) { 13 | return; 14 | } 15 | } )(); 16 | 17 | $( function() { 18 | // Focus styles for menus. 19 | $( '#access, .secondary-navigation' ).find( 'a' ).on( 'focus.sempress blur.sempress', function() { 20 | $( this ).parents().toggleClass( 'focus' ); 21 | } ); 22 | } ); 23 | } )( jQuery ); 24 | -------------------------------------------------------------------------------- /sempress/js/html5shiv.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | !function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); -------------------------------------------------------------------------------- /sempress/languages/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/de_DE.mo -------------------------------------------------------------------------------- /sempress/languages/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/fr_FR.mo -------------------------------------------------------------------------------- /sempress/languages/id_ID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/id_ID.mo -------------------------------------------------------------------------------- /sempress/languages/id_ID.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: SemPress 1.4.0\n" 4 | "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n" 5 | "POT-Creation-Date: 2016-11-29 21:04+0100\n" 6 | "PO-Revision-Date: 2016-11-29 21:08+0100\n" 7 | "Last-Translator: Rizky Luthfianto \n" 8 | "Language-Team: Sugeng Tigefa - http://tigefa4u.github.io/\n" 9 | "Language: id_ID\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Generator: Poedit 1.8.11\n" 14 | "X-Poedit-KeywordsList: __;_e;_x;_ex;esc_attr_e;_;_n:1,2;_nx:1,2\n" 15 | ";_n_noop: 1,2;_nx_noop:1,2X-Poedit-Basepath: .\n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Poedit-SourceCharset: UTF-8\n" 18 | "X-Poedit-Basepath: .\n" 19 | "X-Poedit-SearchPath-0: /Users/pfefferle/Work/SemPress/sempress\n" 20 | "X-Poedit-SearchPath-1: /Users/matthias/Work/SemPress/sempress\n" 21 | 22 | #: 404.php:16 23 | msgid "Well this is somewhat embarrassing, isn’t it?" 24 | msgstr "Nah ini agak memalukan, bukan?" 25 | 26 | #: 404.php:20 27 | msgid "" 28 | "It seems we can’t find what you’re looking for. Perhaps " 29 | "searching, or one of the links below, can help." 30 | msgstr "" 31 | "Tampaknya kita tidak dapat menemukan apa yang Anda cari. Mungkin mencari, " 32 | "atau salah satu link di bawah ini, dapat membantu." 33 | 34 | #: 404.php:27 35 | msgid "Most Used Categories" 36 | msgstr "Kategori Yang Sering Digunakan" 37 | 38 | #. translators: %1$s: smilie 39 | #: 404.php:35 40 | msgid "Try looking in the monthly archives. %1$s" 41 | msgstr "Coba cari di arsip bulanan. %1$s" 42 | 43 | #: archive.php:32 archive.php:34 44 | msgid "Archives: %s" 45 | msgstr "Arsip: %s" 46 | 47 | #: archive.php:36 sidebar.php:19 48 | msgid "Archives" 49 | msgstr "Arsip" 50 | 51 | #: archive.php:65 author.php:63 category.php:49 index.php:43 search.php:35 52 | #: tag.php:51 taxonomy-post_format.php:49 53 | msgid "Nothing Found" 54 | msgstr "Tidak Ditemukan" 55 | 56 | #: archive.php:69 author.php:67 category.php:53 index.php:47 tag.php:55 57 | #: taxonomy-post_format.php:53 58 | msgid "" 59 | "It seems we can’t find what you’re looking for. Perhaps " 60 | "searching can help." 61 | msgstr "" 62 | "Tampaknya kami tidak dapat menemukan apa yang Anda cari. Mungkin pencarian " 63 | "bisa membantu." 64 | 65 | #: author.php:27 66 | msgid "Author Archives: %s" 67 | msgstr "Author Archives: %s" 68 | 69 | #: category.php:18 70 | msgid "Category Archives: %s" 71 | msgstr "Category Archives: %s" 72 | 73 | #: comments.php:16 74 | msgid "" 75 | "This post is password protected. Enter the password to view any comments." 76 | msgstr "" 77 | "Posting ini dilindungi kata sandi. Masukkan password untuk melihat komentar." 78 | 79 | #: comments.php:32 80 | msgid "One thought on “%2$s”" 81 | msgid_plural "%1$s thoughts on “%2$s”" 82 | msgstr[0] "Satu pemikiran pada “%2$s”" 83 | msgstr[1] "%1$s pemikiran pada “%2$s”" 84 | 85 | #: comments.php:39 comments.php:59 86 | msgid "Comment navigation" 87 | msgstr "Navigasi komentar" 88 | 89 | #: comments.php:40 comments.php:60 90 | msgid "← Older Comments" 91 | msgstr "← Komentar-komentar Lebih Lawas" 92 | 93 | #: comments.php:41 comments.php:61 94 | msgid "Newer Comments →" 95 | msgstr "Komentar-komentar baru →" 96 | 97 | #: comments.php:71 98 | msgid "Comments are closed." 99 | msgstr "Komentar ditutup." 100 | 101 | #: content-aside.php:20 content-audio.php:22 content-chat.php:13 102 | #: content-gallery.php:27 content-image.php:21 content-link.php:20 103 | #: content-quote.php:20 content-single.php:25 content-status.php:20 104 | #: content-video.php:18 105 | msgid "Continue reading " 106 | msgstr "Lanjutkan membaca " 107 | 108 | #: content-aside.php:21 content-audio.php:23 content-chat.php:14 109 | #: content-gallery.php:28 content-image.php:22 content-link.php:21 110 | #: content-page.php:19 content-quote.php:21 content-single.php:26 111 | #: content-status.php:21 content-video.php:19 image.php:85 112 | msgid "Pages:" 113 | msgstr "Halaman:" 114 | 115 | #: content-gallery.php:14 content-single.php:9 entry-header.php:2 116 | msgid "Permalink to %s" 117 | msgstr "" 118 | 119 | #: content-page.php:20 entry-footer.php:33 image.php:33 image.php:99 120 | msgid "Edit" 121 | msgstr "Ubah" 122 | 123 | #: entry-footer.php:5 124 | msgid "Posted" 125 | msgstr "Dikirim" 126 | 127 | #. translators: used between list items, there is a space after the comma 128 | #: entry-footer.php:9 entry-footer.php:19 129 | msgid ", " 130 | msgstr ", " 131 | 132 | #: entry-footer.php:13 133 | msgid "in %1$s" 134 | msgstr "di %1$s" 135 | 136 | #: entry-footer.php:24 137 | msgid "Tagged %1$s" 138 | msgstr "Tagged %1$s" 139 | 140 | #: entry-footer.php:30 141 | msgid "Leave a comment" 142 | msgstr "Tinggalkan komentar" 143 | 144 | #: entry-footer.php:30 145 | msgid "1 Comment" 146 | msgstr "1 Komentar" 147 | 148 | #: entry-footer.php:30 149 | msgid "% Comments" 150 | msgstr "% Komentar" 151 | 152 | #: footer.php:17 153 | msgid "This site is powered by %1$s and styled with %2$s" 154 | msgstr "Situs ini didukung oleh %1$s dan ditata dengan %2$s" 155 | 156 | #: functions.php:79 157 | msgid "Primary Menu" 158 | msgstr "Menu utama" 159 | 160 | #: functions.php:152 161 | msgid "SemPress Settings" 162 | msgstr "Pengaturan SemPress" 163 | 164 | #: functions.php:153 165 | msgid "Change the look and feel of SemPress." 166 | msgstr "Ubah penampilan SemPress" 167 | 168 | #: functions.php:164 169 | msgid "Text Color" 170 | msgstr "Warna Teks" 171 | 172 | #: functions.php:176 173 | msgid "Shadow Color" 174 | msgstr "Warna Bayangan" 175 | 176 | #: functions.php:188 177 | msgid "Border Color" 178 | msgstr "Border Color" 179 | 180 | #: functions.php:200 181 | msgid "Page Structure" 182 | msgstr "Struktur Halaman" 183 | 184 | #: functions.php:205 185 | msgid "Single Column (Sidebar at the bottom)" 186 | msgstr "Satu kolom (Sidebar berada di bawah)" 187 | 188 | #: functions.php:206 189 | msgid "Multi Column (Sidebar at the right)" 190 | msgstr "Multi kolom (Sidebar berada di sisi kanan)" 191 | 192 | #: functions.php:255 193 | msgid "Sidebar 1" 194 | msgstr "Sidebar 1" 195 | 196 | #: functions.php:264 197 | msgid "Sidebar 2" 198 | msgstr "Sidebar 2" 199 | 200 | #: functions.php:266 201 | msgid "An optional second sidebar area" 202 | msgstr "Suatu daerah sidebar opsional kedua" 203 | 204 | #: functions.php:316 205 | msgid "Post navigation" 206 | msgstr "Navigasi posting" 207 | 208 | #: functions.php:326 209 | msgid " Older posts" 210 | msgstr " Post-post lama" 211 | 212 | #: functions.php:330 213 | msgid "Newer posts " 214 | msgstr "Posting terbaru " 215 | 216 | #. translators: 1: date, 2: time 217 | #: functions.php:373 functions.php:399 218 | msgid "%1$s at %2$s" 219 | msgstr "%1$s di %2$s" 220 | 221 | #: functions.php:375 functions.php:401 222 | msgid "(Edit)" 223 | msgstr "(Edit)" 224 | 225 | #: functions.php:388 226 | msgid "%s says:" 227 | msgstr "%s mengatakan:" 228 | 229 | #: functions.php:391 230 | msgid "Your comment is awaiting moderation." 231 | msgstr "Komentar anda sedang menunggu moderasi." 232 | 233 | #: functions.php:425 234 | msgid "" 235 | "Posted on
by " 241 | "%5$s %8$s
" 244 | msgstr "" 245 | 246 | #: functions.php:432 247 | msgid "View all posts by %s" 248 | msgstr "Lihat semua posting dari %s" 249 | 250 | #: header.php:38 251 | msgid "Main menu" 252 | msgstr "Menu utama" 253 | 254 | #: header.php:39 255 | msgid "Skip to content" 256 | msgstr "Loncat ke daftar isi" 257 | 258 | #: image.php:23 259 | msgid "" 260 | "Published at %4$s × %5$s in %7$s" 264 | msgstr "" 265 | "Published at %4$s × %5$s in %7$s" 269 | 270 | #: image.php:37 271 | msgid "← Previous" 272 | msgstr "← Sebelumnya" 273 | 274 | #: image.php:38 275 | msgid "Next →" 276 | msgstr "Selanjutnya →" 277 | 278 | #: image.php:91 279 | msgid "" 280 | "Post a " 281 | "comment or leave a trackback: Trackback URL." 283 | msgstr "" 284 | "Posting komentar or meninggalkan trackback: Trackback URL." 288 | 289 | #: image.php:93 290 | msgid "" 291 | "Comments are closed, but you can leave a trackback: Trackback URL." 294 | msgstr "" 295 | "Komentar yang ditutup, tapi Anda dapat meninggalkan trackback: Trackback URL." 298 | 299 | #: image.php:95 300 | msgid "" 301 | "Trackbacks are closed, but you can post a comment." 303 | msgstr "" 304 | "Trackbacks adalah ditutup, tapi Anda dapat Post a comment." 306 | 307 | #: image.php:97 308 | msgid "Both comments and trackbacks are currently closed." 309 | msgstr "Kedua komentar dan Pelacakan sedang ditutup." 310 | 311 | #: search.php:17 312 | msgid "Search Results for: %s" 313 | msgstr "Hasil pencarian untuk: %s" 314 | 315 | #: search.php:39 316 | msgid "" 317 | "Sorry, but nothing matched your search terms. Please try again with some " 318 | "different keywords." 319 | msgstr "" 320 | "Maaf, tidak ada yang cocok dengan istilah pencarian Anda. Silakan coba lagi " 321 | "dengan beberapa kata kunci yang berbeda." 322 | 323 | #: sidebar.php:26 324 | msgid "Meta" 325 | msgstr "Meta" 326 | 327 | #: tag.php:18 328 | msgid "Tag Archives: %s" 329 | msgstr "Tag Arsip: %s" 330 | 331 | #: taxonomy-post_format.php:24 332 | msgid "%s Archives" 333 | msgstr "%s Arsip" 334 | 335 | #. Theme Name of the plugin/theme 336 | msgid "SemPress" 337 | msgstr "" 338 | 339 | #. Theme URI of the plugin/theme 340 | msgid "https://github.com/pfefferle/SemPress" 341 | msgstr "" 342 | 343 | #. Description of the plugin/theme 344 | msgid "" 345 | "SemPress is an extremely lightweight, responsive theme designed to show off " 346 | "your posts, quotes, and images. SemPress supports multiple post formats, " 347 | "widgets, and the option to upload a custom header or background image. The " 348 | "theme is based on HTML5 mixed with microformats, microformats v2 and " 349 | "microdata (Schema.org)." 350 | msgstr "" 351 | 352 | #. Author of the plugin/theme 353 | msgid "Matthias Pfefferle" 354 | msgstr "" 355 | 356 | #. Author URI of the plugin/theme 357 | msgid "http://notiz.blog/projects/sempress/" 358 | msgstr "" 359 | 360 | #. Template Name of the plugin/theme 361 | msgid "Full-width, no sidebar" 362 | msgstr "" 363 | 364 | #: functions.php:320 365 | msgctxt "Previous post link" 366 | msgid "←" 367 | msgstr "" 368 | 369 | #: functions.php:321 370 | msgctxt "Next post link" 371 | msgid "→" 372 | msgstr "" 373 | 374 | #~ msgid "Page %s" 375 | #~ msgstr "Halaman ke-%s" 376 | 377 | #~ msgid "←" 378 | #~ msgstr "←" 379 | 380 | #~ msgid "→" 381 | #~ msgstr "→" 382 | 383 | #~ msgid "" 384 | #~ "Posted on
by %5$s " 390 | #~ "%8$s
" 393 | #~ msgstr "" 394 | #~ "Posted on
by %5$s " 400 | #~ "%8$s
" 403 | 404 | #~ msgid "Search here…" 405 | #~ msgstr "Cari di sini…" 406 | -------------------------------------------------------------------------------- /sempress/languages/ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/ko_KR.mo -------------------------------------------------------------------------------- /sempress/languages/ko_KR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: SemPress 1.5.0\n" 4 | "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n" 5 | "POT-Creation-Date: 2016-11-29 21:04+0100\n" 6 | "PO-Revision-Date: 2016-11-29 21:08+0100\n" 7 | "Last-Translator: Matthias Pfefferle \n" 8 | "Language-Team: CARLITO\n" 9 | "Language: ko_KR\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Generator: Poedit 1.8.11\n" 14 | "X-Poedit-KeywordsList: __;_e;_x;_ex;esc_attr_e;_;_n:1,2;_nx:1,2\n" 15 | ";_n_noop: 1,2;_nx_noop:1,2X-Poedit-Basepath: .\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Poedit-Basepath: .\n" 18 | "X-Poedit-SourceCharset: UTF-8\n" 19 | "X-Poedit-SearchPath-0: /Users/pfefferle/Work/SemPress/sempress\n" 20 | "X-Poedit-SearchPath-1: /Users/matthias/Work/SemPress/sempress\n" 21 | 22 | #: 404.php:16 23 | msgid "Well this is somewhat embarrassing, isn’t it?" 24 | msgstr "좀 당황스럽네요. 그렇지 않나요?" 25 | 26 | #: 404.php:20 27 | msgid "" 28 | "It seems we can’t find what you’re looking for. Perhaps " 29 | "searching, or one of the links below, can help." 30 | msgstr "찾으시는 페이지가 없습니다. 검색을 활용해 보세요." 31 | 32 | #: 404.php:27 33 | msgid "Most Used Categories" 34 | msgstr "자주 사용한 카테고리" 35 | 36 | #. translators: %1$s: smilie 37 | #: 404.php:35 38 | msgid "Try looking in the monthly archives. %1$s" 39 | msgstr "월별 보관 목록에서 찾아 보세요. %1$s" 40 | 41 | #: archive.php:32 archive.php:34 42 | msgid "Archives: %s" 43 | msgstr "보관물: %s" 44 | 45 | #: archive.php:36 sidebar.php:19 46 | msgid "Archives" 47 | msgstr "보관물" 48 | 49 | #: archive.php:65 author.php:63 category.php:49 index.php:43 search.php:35 50 | #: tag.php:51 taxonomy-post_format.php:49 51 | msgid "Nothing Found" 52 | msgstr "찾을 수 없습니다" 53 | 54 | #: archive.php:69 author.php:67 category.php:53 index.php:47 tag.php:55 55 | #: taxonomy-post_format.php:53 56 | msgid "" 57 | "It seems we can’t find what you’re looking for. Perhaps " 58 | "searching can help." 59 | msgstr "찾으시는 페이지가 없습니다. 검색을 활용해 보세요." 60 | 61 | #: author.php:27 62 | msgid "Author Archives: %s" 63 | msgstr "작성자 보관함: %s" 64 | 65 | #: category.php:18 66 | msgid "Category Archives: %s" 67 | msgstr "카테고리 보관함: %s" 68 | 69 | #: comments.php:16 70 | msgid "" 71 | "This post is password protected. Enter the password to view any comments." 72 | msgstr "이 포스트는 보호된 글입니다. 내용을 보려면 비밀번호를 입력하세요." 73 | 74 | #: comments.php:32 75 | msgid "One thought on “%2$s”" 76 | msgid_plural "%1$s thoughts on “%2$s”" 77 | msgstr[0] "“%2$s”에 대한 한 개의 댓글" 78 | msgstr[1] "“%2$s”에 대한 %1$s개의 댓글" 79 | 80 | #: comments.php:39 comments.php:59 81 | msgid "Comment navigation" 82 | msgstr "댓글 내비게이션" 83 | 84 | #: comments.php:40 comments.php:60 85 | msgid "← Older Comments" 86 | msgstr "← 이전 댓글" 87 | 88 | #: comments.php:41 comments.php:61 89 | msgid "Newer Comments →" 90 | msgstr "새로운 댓글 →" 91 | 92 | #: comments.php:71 93 | msgid "Comments are closed." 94 | msgstr "댓글 작성이 종료되었습니다." 95 | 96 | #: content-aside.php:20 content-audio.php:22 content-chat.php:13 97 | #: content-gallery.php:27 content-image.php:21 content-link.php:20 98 | #: content-quote.php:20 content-single.php:25 content-status.php:20 99 | #: content-video.php:18 100 | msgid "Continue reading " 101 | msgstr "계속 읽기 " 102 | 103 | #: content-aside.php:21 content-audio.php:23 content-chat.php:14 104 | #: content-gallery.php:28 content-image.php:22 content-link.php:21 105 | #: content-page.php:19 content-quote.php:21 content-single.php:26 106 | #: content-status.php:21 content-video.php:19 image.php:85 107 | msgid "Pages:" 108 | msgstr "페이지: " 109 | 110 | #: content-gallery.php:14 content-single.php:9 entry-header.php:2 111 | msgid "Permalink to %s" 112 | msgstr "" 113 | 114 | #: content-page.php:20 entry-footer.php:33 image.php:33 image.php:99 115 | msgid "Edit" 116 | msgstr "편집" 117 | 118 | #: entry-footer.php:5 119 | msgid "Posted" 120 | msgstr " " 121 | 122 | #. translators: used between list items, there is a space after the comma 123 | #: entry-footer.php:9 entry-footer.php:19 124 | msgid ", " 125 | msgstr ", " 126 | 127 | #: entry-footer.php:13 128 | msgid "in %1$s" 129 | msgstr "카테고리: %1$s" 130 | 131 | #: entry-footer.php:24 132 | msgid "Tagged %1$s" 133 | msgstr "태그: %1$s" 134 | 135 | #: entry-footer.php:30 136 | msgid "Leave a comment" 137 | msgstr "댓글 남기기" 138 | 139 | #: entry-footer.php:30 140 | msgid "1 Comment" 141 | msgstr "한 개의 댓글" 142 | 143 | #: entry-footer.php:30 144 | msgid "% Comments" 145 | msgstr "%개의 댓글" 146 | 147 | #: footer.php:17 148 | msgid "This site is powered by %1$s and styled with %2$s" 149 | msgstr "This site is powered by %1$s and styled with %2$s" 150 | 151 | #: functions.php:79 152 | msgid "Primary Menu" 153 | msgstr "주 메뉴" 154 | 155 | #: functions.php:152 156 | msgid "SemPress Settings" 157 | msgstr "SemPress 설정" 158 | 159 | #: functions.php:153 160 | msgid "Change the look and feel of SemPress." 161 | msgstr "SemPress 외모 변경" 162 | 163 | #: functions.php:164 164 | msgid "Text Color" 165 | msgstr "텍스트 색상" 166 | 167 | #: functions.php:176 168 | msgid "Shadow Color" 169 | msgstr "그림자 색상" 170 | 171 | #: functions.php:188 172 | msgid "Border Color" 173 | msgstr "외곽선 색상" 174 | 175 | #: functions.php:200 176 | msgid "Page Structure" 177 | msgstr "페이지 구조" 178 | 179 | #: functions.php:205 180 | msgid "Single Column (Sidebar at the bottom)" 181 | msgstr "1단 (하단에 사이드바 위치)" 182 | 183 | #: functions.php:206 184 | msgid "Multi Column (Sidebar at the right)" 185 | msgstr "2단 (우측에 사이드바 위치)" 186 | 187 | #: functions.php:255 188 | msgid "Sidebar 1" 189 | msgstr "사이드바 1" 190 | 191 | #: functions.php:264 192 | msgid "Sidebar 2" 193 | msgstr "사이드바 2" 194 | 195 | #: functions.php:266 196 | msgid "An optional second sidebar area" 197 | msgstr "선택 사이드바 영역" 198 | 199 | #: functions.php:316 200 | msgid "Post navigation" 201 | msgstr "포스트 내비게이션" 202 | 203 | #: functions.php:326 204 | msgid " Older posts" 205 | msgstr " 이전 글" 206 | 207 | #: functions.php:330 208 | msgid "Newer posts " 209 | msgstr "새 글 " 210 | 211 | #. translators: 1: date, 2: time 212 | #: functions.php:373 functions.php:399 213 | msgid "%1$s at %2$s" 214 | msgstr "%1$s %2$s" 215 | 216 | #: functions.php:375 functions.php:401 217 | msgid "(Edit)" 218 | msgstr "(편집)" 219 | 220 | #: functions.php:388 221 | msgid "%s says:" 222 | msgstr "%s :" 223 | 224 | #: functions.php:391 225 | msgid "Your comment is awaiting moderation." 226 | msgstr "댓글 편집 대기 중." 227 | 228 | #: functions.php:425 229 | msgid "" 230 | "Posted on
by " 236 | "%5$s %8$s
" 239 | msgstr "" 240 | 241 | #: functions.php:432 242 | msgid "View all posts by %s" 243 | msgstr "%s의 모든 글 보기" 244 | 245 | #: header.php:38 246 | msgid "Main menu" 247 | msgstr "메인 메뉴" 248 | 249 | #: header.php:39 250 | msgid "Skip to content" 251 | msgstr "콘텐츠로 바로 가기" 252 | 253 | #: image.php:23 254 | msgid "" 255 | "Published at %4$s × %5$s in %7$s" 259 | msgstr "" 260 | " at %4$s × %5$s in %7$s에 발행됨" 264 | 265 | #: image.php:37 266 | msgid "← Previous" 267 | msgstr "← 이전" 268 | 269 | #: image.php:38 270 | msgid "Next →" 271 | msgstr "다음 →" 272 | 273 | #: image.php:91 274 | msgid "" 275 | "Post a " 276 | "comment or leave a trackback: Trackback URL." 278 | msgstr "" 279 | "댓글 작성 또는 트랙백 남기기: 트랙백 URL." 282 | 283 | #: image.php:93 284 | msgid "" 285 | "Comments are closed, but you can leave a trackback: Trackback URL." 288 | msgstr "" 289 | "댓글 작성이 종료되었습니다. 트랙백은 보낼 수 있습니다.: Trackback URL." 292 | 293 | #: image.php:95 294 | msgid "" 295 | "Trackbacks are closed, but you can post a comment." 297 | msgstr "" 298 | "트랙백이 종료되었습니다. 댓글 작성은 가능합니다.: 댓글 남기기." 300 | 301 | #: image.php:97 302 | msgid "Both comments and trackbacks are currently closed." 303 | msgstr "댓글 작성과 트랙백 보내기가 종료되었습니다." 304 | 305 | #: search.php:17 306 | msgid "Search Results for: %s" 307 | msgstr "검색 결과: %s" 308 | 309 | #: search.php:39 310 | msgid "" 311 | "Sorry, but nothing matched your search terms. Please try again with some " 312 | "different keywords." 313 | msgstr "검색어와 일치하는 글이 없습니다. 다른 검색어로 다시 검색해 주세요." 314 | 315 | #: sidebar.php:26 316 | msgid "Meta" 317 | msgstr "Meta" 318 | 319 | #: tag.php:18 320 | msgid "Tag Archives: %s" 321 | msgstr "태그 보관물: %s" 322 | 323 | #: taxonomy-post_format.php:24 324 | msgid "%s Archives" 325 | msgstr "%s 보관물" 326 | 327 | #. Theme Name of the plugin/theme 328 | msgid "SemPress" 329 | msgstr "" 330 | 331 | #. Theme URI of the plugin/theme 332 | msgid "https://github.com/pfefferle/SemPress" 333 | msgstr "" 334 | 335 | #. Description of the plugin/theme 336 | msgid "" 337 | "SemPress is an extremely lightweight, responsive theme designed to show off " 338 | "your posts, quotes, and images. SemPress supports multiple post formats, " 339 | "widgets, and the option to upload a custom header or background image. The " 340 | "theme is based on HTML5 mixed with microformats, microformats v2 and " 341 | "microdata (Schema.org)." 342 | msgstr "" 343 | 344 | #. Author of the plugin/theme 345 | msgid "Matthias Pfefferle" 346 | msgstr "" 347 | 348 | #. Author URI of the plugin/theme 349 | msgid "http://notiz.blog/projects/sempress/" 350 | msgstr "" 351 | 352 | #. Template Name of the plugin/theme 353 | msgid "Full-width, no sidebar" 354 | msgstr "" 355 | 356 | #: functions.php:320 357 | msgctxt "Previous post link" 358 | msgid "←" 359 | msgstr "" 360 | 361 | #: functions.php:321 362 | msgctxt "Next post link" 363 | msgid "→" 364 | msgstr "" 365 | 366 | #~ msgid "Page %s" 367 | #~ msgstr "페이지 %s" 368 | 369 | #~ msgid "←" 370 | #~ msgstr "←" 371 | 372 | #~ msgid "→" 373 | #~ msgstr "→" 374 | 375 | #~ msgid "" 376 | #~ "Posted on
by %5$s " 382 | #~ "%8$s
" 385 | #~ msgstr "" 386 | #~ "%5$s%8$s
에 의해 에 " 394 | #~ "작성" 395 | 396 | #~ msgid "Search here…" 397 | #~ msgstr "검색…" 398 | -------------------------------------------------------------------------------- /sempress/languages/nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/nb_NO.mo -------------------------------------------------------------------------------- /sempress/languages/nb_NO.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: SemPress 1.4.0\n" 4 | "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n" 5 | "POT-Creation-Date: 2016-11-29 21:05+0100\n" 6 | "PO-Revision-Date: 2016-11-29 21:08+0100\n" 7 | "Last-Translator: Matthias Pfefferle \n" 8 | "Language-Team: Molakki Temaoversetting - https://github.com/kristofferR " 9 | "\n" 10 | "Language: nb_NO\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "X-Generator: Poedit 1.8.11\n" 15 | "X-Poedit-KeywordsList: __;_e\n" 16 | "X-Poedit-Basepath: .\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Poedit-SourceCharset: UTF-8\n" 19 | "X-Poedit-SearchPath-0: /Users/pfefferle/Work/SemPress/sempress\n" 20 | 21 | #: 404.php:16 22 | msgid "Well this is somewhat embarrassing, isn’t it?" 23 | msgstr "Side ikke funnet." 24 | 25 | #: 404.php:20 26 | msgid "" 27 | "It seems we can’t find what you’re looking for. Perhaps " 28 | "searching, or one of the links below, can help." 29 | msgstr "" 30 | "Vi finner ikke det du letet etter. Kanskje et søk eller noen av lenkene " 31 | "nedenfor kan hjelpe?" 32 | 33 | #: 404.php:27 34 | msgid "Most Used Categories" 35 | msgstr "Mest brukte kategorier" 36 | 37 | #. translators: %1$s: smilie 38 | #: 404.php:35 39 | msgid "Try looking in the monthly archives. %1$s" 40 | msgstr "Prøv å lete i de månedlige arkivene. %1$s" 41 | 42 | #: archive.php:32 archive.php:34 43 | msgid "Archives: %s" 44 | msgstr "Arkiv: %s" 45 | 46 | #: archive.php:36 sidebar.php:19 47 | msgid "Archives" 48 | msgstr "Arkiv" 49 | 50 | #: archive.php:65 author.php:63 category.php:49 index.php:43 search.php:35 51 | #: tag.php:51 taxonomy-post_format.php:49 52 | msgid "Nothing Found" 53 | msgstr "Ingen treff" 54 | 55 | #: archive.php:69 author.php:67 category.php:53 index.php:47 tag.php:55 56 | #: taxonomy-post_format.php:53 57 | msgid "" 58 | "It seems we can’t find what you’re looking for. Perhaps " 59 | "searching can help." 60 | msgstr "Vi finner ikke det du letet etter. Kanskje et søk kan hjelpe?" 61 | 62 | #: author.php:27 63 | msgid "Author Archives: %s" 64 | msgstr "Forfatter-arkiv: %s" 65 | 66 | #: category.php:18 67 | msgid "Category Archives: %s" 68 | msgstr "Kategori-arkiv: %s" 69 | 70 | #: comments.php:16 71 | msgid "" 72 | "This post is password protected. Enter the password to view any comments." 73 | msgstr "" 74 | "Dette innlegget er passordbeskyttet. Skriv inn passordet for å vise " 75 | "kommentarer." 76 | 77 | #: comments.php:32 78 | msgid "One thought on “%2$s”" 79 | msgid_plural "%1$s thoughts on “%2$s”" 80 | msgstr[0] "En kommentar til “%2$s”" 81 | msgstr[1] "%1$s kommentarer til “%2$s”" 82 | 83 | #: comments.php:39 comments.php:59 84 | msgid "Comment navigation" 85 | msgstr "Kommentarnavigasjon" 86 | 87 | #: comments.php:40 comments.php:60 88 | msgid "← Older Comments" 89 | msgstr "← Eldre kommentarer" 90 | 91 | #: comments.php:41 comments.php:61 92 | msgid "Newer Comments →" 93 | msgstr "Nyere kommentarer →" 94 | 95 | #: comments.php:71 96 | msgid "Comments are closed." 97 | msgstr "Kommentarer er stengt." 98 | 99 | #: content-aside.php:20 content-audio.php:22 content-chat.php:13 100 | #: content-gallery.php:27 content-image.php:21 content-link.php:20 101 | #: content-quote.php:20 content-single.php:25 content-status.php:20 102 | #: content-video.php:18 103 | msgid "Continue reading " 104 | msgstr "Fortsett å lese " 105 | 106 | #: content-aside.php:21 content-audio.php:23 content-chat.php:14 107 | #: content-gallery.php:28 content-image.php:22 content-link.php:21 108 | #: content-page.php:19 content-quote.php:21 content-single.php:26 109 | #: content-status.php:21 content-video.php:19 image.php:85 110 | msgid "Pages:" 111 | msgstr "Sider:" 112 | 113 | #: content-gallery.php:14 content-single.php:9 entry-header.php:2 114 | msgid "Permalink to %s" 115 | msgstr "" 116 | 117 | #: content-page.php:20 entry-footer.php:33 image.php:33 image.php:99 118 | msgid "Edit" 119 | msgstr "Rediger" 120 | 121 | #: entry-footer.php:5 122 | msgid "Posted" 123 | msgstr "Publisert" 124 | 125 | #. translators: used between list items, there is a space after the comma 126 | #: entry-footer.php:9 entry-footer.php:19 127 | msgid ", " 128 | msgstr ", " 129 | 130 | #: entry-footer.php:13 131 | msgid "in %1$s" 132 | msgstr "i %1$s" 133 | 134 | #: entry-footer.php:24 135 | msgid "Tagged %1$s" 136 | msgstr "Merket %1$s" 137 | 138 | #: entry-footer.php:30 139 | msgid "Leave a comment" 140 | msgstr "Legg igjen en kommentar" 141 | 142 | #: entry-footer.php:30 143 | msgid "1 Comment" 144 | msgstr "1 kommentar" 145 | 146 | #: entry-footer.php:30 147 | msgid "% Comments" 148 | msgstr "% kommentarer" 149 | 150 | #: footer.php:17 151 | msgid "This site is powered by %1$s and styled with %2$s" 152 | msgstr "Denne siden er drevet av %1$s med temaet %2$s" 153 | 154 | #: functions.php:79 155 | msgid "Primary Menu" 156 | msgstr "Hovedmeny" 157 | 158 | #: functions.php:152 159 | msgid "SemPress Settings" 160 | msgstr "" 161 | 162 | #: functions.php:153 163 | msgid "Change the look and feel of SemPress." 164 | msgstr "" 165 | 166 | #: functions.php:164 167 | msgid "Text Color" 168 | msgstr "Tekstfarge" 169 | 170 | #: functions.php:176 171 | msgid "Shadow Color" 172 | msgstr "Skyggefarge" 173 | 174 | #: functions.php:188 175 | msgid "Border Color" 176 | msgstr "Rammefarge" 177 | 178 | #: functions.php:200 179 | msgid "Page Structure" 180 | msgstr "" 181 | 182 | #: functions.php:205 183 | msgid "Single Column (Sidebar at the bottom)" 184 | msgstr "" 185 | 186 | #: functions.php:206 187 | msgid "Multi Column (Sidebar at the right)" 188 | msgstr "" 189 | 190 | #: functions.php:255 191 | msgid "Sidebar 1" 192 | msgstr "Sidekolonne 1" 193 | 194 | #: functions.php:264 195 | msgid "Sidebar 2" 196 | msgstr "Sidekolonne 2" 197 | 198 | #: functions.php:266 199 | msgid "An optional second sidebar area" 200 | msgstr "En valgfri ekstra sidekolonne." 201 | 202 | #: functions.php:316 203 | msgid "Post navigation" 204 | msgstr "Innleggsnavigasjon" 205 | 206 | #: functions.php:326 207 | msgid " Older posts" 208 | msgstr " Eldre innlegg" 209 | 210 | #: functions.php:330 211 | msgid "Newer posts " 212 | msgstr "Nyere innlegg " 213 | 214 | #. translators: 1: date, 2: time 215 | #: functions.php:373 functions.php:399 216 | msgid "%1$s at %2$s" 217 | msgstr "%1$s kl. %2$s" 218 | 219 | #: functions.php:375 functions.php:401 220 | msgid "(Edit)" 221 | msgstr "(Rediger)" 222 | 223 | #: functions.php:388 224 | msgid "%s says:" 225 | msgstr "%s sier:" 226 | 227 | #: functions.php:391 228 | msgid "Your comment is awaiting moderation." 229 | msgstr "Din kommentar venter på moderering." 230 | 231 | #: functions.php:425 232 | msgid "" 233 | "Posted on
by " 239 | "%5$s %8$s
" 242 | msgstr "" 243 | 244 | #: functions.php:432 245 | msgid "View all posts by %s" 246 | msgstr "Vis alle innlegg av %s" 247 | 248 | #: header.php:38 249 | msgid "Main menu" 250 | msgstr "Hovedmeny" 251 | 252 | #: header.php:39 253 | msgid "Skip to content" 254 | msgstr "Hopp til innhold" 255 | 256 | #: image.php:23 257 | msgid "" 258 | "Published at %4$s × %5$s in %7$s" 262 | msgstr "" 263 | "Postet den %4$s × %5$s i %7$s" 267 | 268 | #: image.php:37 269 | msgid "← Previous" 270 | msgstr "← Forrige" 271 | 272 | #: image.php:38 273 | msgid "Next →" 274 | msgstr "Neste →" 275 | 276 | #: image.php:91 277 | msgid "" 278 | "Post a " 279 | "comment or leave a trackback: Trackback URL." 281 | msgstr "" 282 | "Post en " 283 | "kommentar eller legg igjen et tilbaketråkk: Trackback URL." 286 | 287 | #: image.php:93 288 | msgid "" 289 | "Comments are closed, but you can leave a trackback: Trackback URL." 292 | msgstr "" 293 | "Kommentarene er stengt, men du kan legge igjen en trackback: Trackback URL." 296 | 297 | #: image.php:95 298 | msgid "" 299 | "Trackbacks are closed, but you can post a comment." 301 | msgstr "" 302 | "Trackbacks er stengt, men du kan legge inn en kommentar." 304 | 305 | #: image.php:97 306 | msgid "Both comments and trackbacks are currently closed." 307 | msgstr "Stengt for kommentarer og tilbakesporinger." 308 | 309 | #: search.php:17 310 | msgid "Search Results for: %s" 311 | msgstr "Søkeresultat(er) for: %s" 312 | 313 | #: search.php:39 314 | msgid "" 315 | "Sorry, but nothing matched your search terms. Please try again with some " 316 | "different keywords." 317 | msgstr "" 318 | "Beklager, ingenting matcher ditt søkekriterie. Forsøk med en " 319 | "annen søkestreng." 320 | 321 | #: sidebar.php:26 322 | msgid "Meta" 323 | msgstr "Meta" 324 | 325 | #: tag.php:18 326 | msgid "Tag Archives: %s" 327 | msgstr "Stikkord-arkiv: %s" 328 | 329 | #: taxonomy-post_format.php:24 330 | msgid "%s Archives" 331 | msgstr "%s arkiv" 332 | 333 | #. Theme Name of the plugin/theme 334 | msgid "SemPress" 335 | msgstr "" 336 | 337 | #. Theme URI of the plugin/theme 338 | msgid "https://github.com/pfefferle/SemPress" 339 | msgstr "" 340 | 341 | #. Description of the plugin/theme 342 | msgid "" 343 | "SemPress is an extremely lightweight, responsive theme designed to show off " 344 | "your posts, quotes, and images. SemPress supports multiple post formats, " 345 | "widgets, and the option to upload a custom header or background image. The " 346 | "theme is based on HTML5 mixed with microformats, microformats v2 and " 347 | "microdata (Schema.org)." 348 | msgstr "" 349 | 350 | #. Author of the plugin/theme 351 | msgid "Matthias Pfefferle" 352 | msgstr "" 353 | 354 | #. Author URI of the plugin/theme 355 | msgid "http://notiz.blog/projects/sempress/" 356 | msgstr "" 357 | 358 | #. Template Name of the plugin/theme 359 | msgid "Full-width, no sidebar" 360 | msgstr "" 361 | 362 | #: functions.php:320 363 | msgctxt "Previous post link" 364 | msgid "←" 365 | msgstr "" 366 | 367 | #: functions.php:321 368 | msgctxt "Next post link" 369 | msgid "→" 370 | msgstr "" 371 | 372 | #~ msgid "Page %s" 373 | #~ msgstr "Side %s" 374 | 375 | #~ msgid "" 376 | #~ "Posted on
by %5$s " 382 | #~ "%8$s
" 385 | #~ msgstr "" 386 | #~ "Postet
av %5$s " 392 | #~ "%8$s
" 395 | 396 | #~ msgid "Search here…" 397 | #~ msgstr "Søk her…" 398 | 399 | #~ msgid "←" 400 | #~ msgstr "←" 401 | 402 | #~ msgid "→" 403 | #~ msgstr "→" 404 | -------------------------------------------------------------------------------- /sempress/languages/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/ru_RU.mo -------------------------------------------------------------------------------- /sempress/languages/ru_RU.po: -------------------------------------------------------------------------------- 1 | # Oleg Shmelyov , 2013. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: SemPress 1.5.0\n" 5 | "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n" 6 | "POT-Creation-Date: 2016-11-29 21:05+0100\n" 7 | "PO-Revision-Date: 2016-11-29 21:08+0100\n" 8 | "Last-Translator: Matthias Pfefferle \n" 9 | "Language-Team: Oleg - http://0leg.net\n" 10 | "Language: ru_RU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Generator: Poedit 1.8.11\n" 16 | "X-Poedit-KeywordsList: __;_e;_x;_ex;esc_attr_e;_;_n:1,2;_nx:1,2\n" 17 | ";_n_noop: 1,2;_nx_noop:1,2X-Poedit-Basepath: .\n" 18 | "X-Poedit-SourceCharset: UTF-8\n" 19 | "X-Poedit-Basepath: .\n" 20 | "X-Poedit-SearchPath-0: /Users/pfefferle/Work/SemPress/sempress\n" 21 | "X-Poedit-SearchPath-1: /Users/matthias/Work/SemPress/sempress\n" 22 | 23 | #: 404.php:16 24 | msgid "Well this is somewhat embarrassing, isn’t it?" 25 | msgstr "Ой, как неудобно получилось…" 26 | 27 | #: 404.php:20 28 | msgid "" 29 | "It seems we can’t find what you’re looking for. Perhaps " 30 | "searching, or one of the links below, can help." 31 | msgstr "" 32 | "Мы не можем найти то, что вы ищете. Возможно, поможет поиск или одна из " 33 | "ссылок ниже?" 34 | 35 | #: 404.php:27 36 | msgid "Most Used Categories" 37 | msgstr "Частоиспользуемые категории" 38 | 39 | #. translators: %1$s: smilie 40 | #: 404.php:35 41 | msgid "Try looking in the monthly archives. %1$s" 42 | msgstr "Попробуйте поискать в архивах по месяцам. %1$s" 43 | 44 | #: archive.php:32 archive.php:34 45 | msgid "Archives: %s" 46 | msgstr "Архивы: %s" 47 | 48 | #: archive.php:36 sidebar.php:19 49 | msgid "Archives" 50 | msgstr "Архивы" 51 | 52 | #: archive.php:65 author.php:63 category.php:49 index.php:43 search.php:35 53 | #: tag.php:51 taxonomy-post_format.php:49 54 | msgid "Nothing Found" 55 | msgstr "Ничего не найдено" 56 | 57 | #: archive.php:69 author.php:67 category.php:53 index.php:47 tag.php:55 58 | #: taxonomy-post_format.php:53 59 | msgid "" 60 | "It seems we can’t find what you’re looking for. Perhaps " 61 | "searching can help." 62 | msgstr "Мы не можем найти то, что вы ищете. Возможно, поможет поиск?" 63 | 64 | #: author.php:27 65 | msgid "Author Archives: %s" 66 | msgstr "Архивы автора: %s" 67 | 68 | #: category.php:18 69 | msgid "Category Archives: %s" 70 | msgstr "Архивы категории: %s" 71 | 72 | #: comments.php:16 73 | msgid "" 74 | "This post is password protected. Enter the password to view any comments." 75 | msgstr "Запись защищена паролем. Введите пароль, чтобы увидеть комментарии." 76 | 77 | #: comments.php:32 78 | msgid "One thought on “%2$s”" 79 | msgid_plural "%1$s thoughts on “%2$s”" 80 | msgstr[0] "Одно мнение о “%2$s”" 81 | msgstr[1] "Мнения о “%2$s” (%1$s)" 82 | 83 | #: comments.php:39 comments.php:59 84 | msgid "Comment navigation" 85 | msgstr "Переход по комментариям" 86 | 87 | #: comments.php:40 comments.php:60 88 | msgid "← Older Comments" 89 | msgstr "← Старые комментарии" 90 | 91 | #: comments.php:41 comments.php:61 92 | msgid "Newer Comments →" 93 | msgstr "Новые комментарии →" 94 | 95 | #: comments.php:71 96 | msgid "Comments are closed." 97 | msgstr "Комментарии закрыты." 98 | 99 | #: content-aside.php:20 content-audio.php:22 content-chat.php:13 100 | #: content-gallery.php:27 content-image.php:21 content-link.php:20 101 | #: content-quote.php:20 content-single.php:25 content-status.php:20 102 | #: content-video.php:18 103 | msgid "Continue reading " 104 | msgstr "Читать далее " 105 | 106 | #: content-aside.php:21 content-audio.php:23 content-chat.php:14 107 | #: content-gallery.php:28 content-image.php:22 content-link.php:21 108 | #: content-page.php:19 content-quote.php:21 content-single.php:26 109 | #: content-status.php:21 content-video.php:19 image.php:85 110 | msgid "Pages:" 111 | msgstr "Страницы:" 112 | 113 | #: content-gallery.php:14 content-single.php:9 entry-header.php:2 114 | msgid "Permalink to %s" 115 | msgstr "" 116 | 117 | #: content-page.php:20 entry-footer.php:33 image.php:33 image.php:99 118 | msgid "Edit" 119 | msgstr "Правка" 120 | 121 | #: entry-footer.php:5 122 | msgid "Posted" 123 | msgstr "Опубликовано" 124 | 125 | #. translators: used between list items, there is a space after the comma 126 | #: entry-footer.php:9 entry-footer.php:19 127 | msgid ", " 128 | msgstr ", " 129 | 130 | #: entry-footer.php:13 131 | msgid "in %1$s" 132 | msgstr "в %1$s" 133 | 134 | #: entry-footer.php:24 135 | msgid "Tagged %1$s" 136 | msgstr "Теги: %1$s" 137 | 138 | #: entry-footer.php:30 139 | msgid "Leave a comment" 140 | msgstr "Оставить комментарий" 141 | 142 | #: entry-footer.php:30 143 | msgid "1 Comment" 144 | msgstr "1 комментарий" 145 | 146 | #: entry-footer.php:30 147 | msgid "% Comments" 148 | msgstr "% комментариев(-я)" 149 | 150 | #: footer.php:17 151 | msgid "This site is powered by %1$s and styled with %2$s" 152 | msgstr "Сайт сделан с помощью %1$s и оформлен %2$s" 153 | 154 | #: functions.php:79 155 | msgid "Primary Menu" 156 | msgstr "Основное меню" 157 | 158 | #: functions.php:152 159 | msgid "SemPress Settings" 160 | msgstr "Настройки SemPress" 161 | 162 | #: functions.php:153 163 | msgid "Change the look and feel of SemPress." 164 | msgstr "Изменить внешний вид SemPress." 165 | 166 | #: functions.php:164 167 | msgid "Text Color" 168 | msgstr "Цвет текста" 169 | 170 | #: functions.php:176 171 | msgid "Shadow Color" 172 | msgstr "Цвет тени" 173 | 174 | #: functions.php:188 175 | msgid "Border Color" 176 | msgstr "Цвет рамки" 177 | 178 | #: functions.php:200 179 | msgid "Page Structure" 180 | msgstr "Структура страницы" 181 | 182 | #: functions.php:205 183 | msgid "Single Column (Sidebar at the bottom)" 184 | msgstr "Одна колонка (боковая панель снизу)" 185 | 186 | #: functions.php:206 187 | msgid "Multi Column (Sidebar at the right)" 188 | msgstr "Две или несколько колонок (боковая панель справа)" 189 | 190 | #: functions.php:255 191 | msgid "Sidebar 1" 192 | msgstr "Боковая панель 1" 193 | 194 | #: functions.php:264 195 | msgid "Sidebar 2" 196 | msgstr "Боковая панель 2" 197 | 198 | #: functions.php:266 199 | msgid "An optional second sidebar area" 200 | msgstr "Дополнителная вторая боковая панель" 201 | 202 | #: functions.php:316 203 | msgid "Post navigation" 204 | msgstr "Перемещение между страницами" 205 | 206 | #: functions.php:326 207 | msgid " Older posts" 208 | msgstr " Старые записи" 209 | 210 | #: functions.php:330 211 | msgid "Newer posts " 212 | msgstr "Новые записи " 213 | 214 | #. translators: 1: date, 2: time 215 | #: functions.php:373 functions.php:399 216 | msgid "%1$s at %2$s" 217 | msgstr "%1$s в %2$s" 218 | 219 | #: functions.php:375 functions.php:401 220 | msgid "(Edit)" 221 | msgstr "(Правка)" 222 | 223 | #: functions.php:388 224 | msgid "%s says:" 225 | msgstr "%s написал:" 226 | 227 | #: functions.php:391 228 | msgid "Your comment is awaiting moderation." 229 | msgstr "Ваш комментарий ожидает проверки." 230 | 231 | #: functions.php:425 232 | msgid "" 233 | "Posted on
by " 239 | "%5$s %8$s
" 242 | msgstr "" 243 | 244 | #: functions.php:432 245 | msgid "View all posts by %s" 246 | msgstr "Посмотреть все записи %s" 247 | 248 | #: header.php:38 249 | msgid "Main menu" 250 | msgstr "Главное меню" 251 | 252 | #: header.php:39 253 | msgid "Skip to content" 254 | msgstr "Перейти к содержанию" 255 | 256 | #: image.php:23 257 | msgid "" 258 | "Published at %4$s × %5$s in %7$s" 262 | msgstr "" 263 | "Опубликовано размер %4$s × %5$s в %7$s" 267 | 268 | #: image.php:37 269 | msgid "← Previous" 270 | msgstr "← Назад" 271 | 272 | #: image.php:38 273 | msgid "Next →" 274 | msgstr "Вперед →" 275 | 276 | #: image.php:91 277 | msgid "" 278 | "Post a " 279 | "comment or leave a trackback: Trackback URL." 281 | msgstr "" 282 | "Оставьте комментарий или трекбэк: URL трекбэка." 286 | 287 | #: image.php:93 288 | msgid "" 289 | "Comments are closed, but you can leave a trackback: Trackback URL." 292 | msgstr "" 293 | "Комментарии закрыты, но вы можете оставить трекбэк: URL " 295 | "трекбэка." 296 | 297 | #: image.php:95 298 | msgid "" 299 | "Trackbacks are closed, but you can post a comment." 301 | msgstr "" 302 | "Трекбэки закрыты, но вы можете оставить комментарий." 304 | 305 | #: image.php:97 306 | msgid "Both comments and trackbacks are currently closed." 307 | msgstr "И комментарии и трекбеки закрыты." 308 | 309 | #: search.php:17 310 | msgid "Search Results for: %s" 311 | msgstr "Результаты поиска для: %s" 312 | 313 | #: search.php:39 314 | msgid "" 315 | "Sorry, but nothing matched your search terms. Please try again with some " 316 | "different keywords." 317 | msgstr "" 318 | "К сожалению, по этому запросу ничего не найдено. Попробуйте использовать " 319 | "другие слова." 320 | 321 | #: sidebar.php:26 322 | msgid "Meta" 323 | msgstr "Мета" 324 | 325 | #: tag.php:18 326 | msgid "Tag Archives: %s" 327 | msgstr "Архивы тега: %s" 328 | 329 | #: taxonomy-post_format.php:24 330 | msgid "%s Archives" 331 | msgstr "%s Архивы" 332 | 333 | #. Theme Name of the plugin/theme 334 | msgid "SemPress" 335 | msgstr "" 336 | 337 | #. Theme URI of the plugin/theme 338 | msgid "https://github.com/pfefferle/SemPress" 339 | msgstr "" 340 | 341 | #. Description of the plugin/theme 342 | msgid "" 343 | "SemPress is an extremely lightweight, responsive theme designed to show off " 344 | "your posts, quotes, and images. SemPress supports multiple post formats, " 345 | "widgets, and the option to upload a custom header or background image. The " 346 | "theme is based on HTML5 mixed with microformats, microformats v2 and " 347 | "microdata (Schema.org)." 348 | msgstr "" 349 | 350 | #. Author of the plugin/theme 351 | msgid "Matthias Pfefferle" 352 | msgstr "" 353 | 354 | #. Author URI of the plugin/theme 355 | msgid "http://notiz.blog/projects/sempress/" 356 | msgstr "" 357 | 358 | #. Template Name of the plugin/theme 359 | msgid "Full-width, no sidebar" 360 | msgstr "" 361 | 362 | #: functions.php:320 363 | msgctxt "Previous post link" 364 | msgid "←" 365 | msgstr "" 366 | 367 | #: functions.php:321 368 | msgctxt "Next post link" 369 | msgid "→" 370 | msgstr "" 371 | 372 | #~ msgid "Page %s" 373 | #~ msgstr "Страница %s" 374 | 375 | #~ msgid "←" 376 | #~ msgstr "←" 377 | 378 | #~ msgid "→" 379 | #~ msgstr "→" 380 | 381 | #~ msgid "" 382 | #~ "Posted on
by %5$s " 388 | #~ "%8$s
" 391 | #~ msgstr "" 392 | #~ "Дата: . Автор: %5$s " 398 | #~ "%8$s" 401 | 402 | #~ msgid "Search here…" 403 | #~ msgstr "Поиск…" 404 | 405 | #~ msgid "" 406 | #~ "This entry was tagged %2$s. Bookmark the permalink." 408 | #~ msgstr "" 409 | #~ "Запись помечена тегами %2$s. Сохранить ссылку." 411 | 412 | #~ msgid "" 413 | #~ "Bookmark the permalink." 415 | #~ msgstr "" 416 | #~ "Сохранить ссылку." 418 | 419 | #~ msgid "" 420 | #~ "This entry was posted in %1$s and tagged %2$s. Bookmark the permalink." 422 | #~ msgstr "" 423 | #~ "Запись опубликована в %1$s и помечена тегами %2$s. Сохранить ссылку." 425 | 426 | #~ msgid "" 427 | #~ "This entry was posted in %1$s. Bookmark the permalink." 429 | #~ msgstr "" 430 | #~ "Запись опубликована в %1$s. Сохранить ссылку." 432 | -------------------------------------------------------------------------------- /sempress/languages/sempress.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Matthias Pfefferle 2 | # This file is distributed under the GNU General Public License Version 3. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: SemPress 1.5.3\n" 6 | "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n" 7 | "POT-Creation-Date: 2016-11-29 20:01:40+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=utf-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "X-Generator: grunt-wp-i18n 0.5.4\n" 15 | 16 | #: 404.php:16 17 | msgid "Well this is somewhat embarrassing, isn’t it?" 18 | msgstr "" 19 | 20 | #: 404.php:20 21 | msgid "" 22 | "It seems we can’t find what you’re looking for. Perhaps " 23 | "searching, or one of the links below, can help." 24 | msgstr "" 25 | 26 | #: 404.php:27 27 | msgid "Most Used Categories" 28 | msgstr "" 29 | 30 | #: 404.php:35 31 | #. translators: %1$s: smilie 32 | msgid "Try looking in the monthly archives. %1$s" 33 | msgstr "" 34 | 35 | #: archive.php:32 archive.php:34 36 | msgid "Archives: %s" 37 | msgstr "" 38 | 39 | #: archive.php:36 sidebar.php:19 40 | msgid "Archives" 41 | msgstr "" 42 | 43 | #: archive.php:65 author.php:63 category.php:49 index.php:43 search.php:35 44 | #: tag.php:51 taxonomy-post_format.php:49 45 | msgid "Nothing Found" 46 | msgstr "" 47 | 48 | #: archive.php:69 author.php:67 category.php:53 index.php:47 tag.php:55 49 | #: taxonomy-post_format.php:53 50 | msgid "" 51 | "It seems we can’t find what you’re looking for. Perhaps " 52 | "searching can help." 53 | msgstr "" 54 | 55 | #: author.php:27 56 | msgid "Author Archives: %s" 57 | msgstr "" 58 | 59 | #: category.php:18 60 | msgid "Category Archives: %s" 61 | msgstr "" 62 | 63 | #: comments.php:16 64 | msgid "This post is password protected. Enter the password to view any comments." 65 | msgstr "" 66 | 67 | #: comments.php:32 68 | msgid "One thought on “%2$s”" 69 | msgid_plural "%1$s thoughts on “%2$s”" 70 | msgstr[0] "" 71 | msgstr[1] "" 72 | 73 | #: comments.php:39 comments.php:59 74 | msgid "Comment navigation" 75 | msgstr "" 76 | 77 | #: comments.php:40 comments.php:60 78 | msgid "← Older Comments" 79 | msgstr "" 80 | 81 | #: comments.php:41 comments.php:61 82 | msgid "Newer Comments →" 83 | msgstr "" 84 | 85 | #: comments.php:71 86 | msgid "Comments are closed." 87 | msgstr "" 88 | 89 | #: content-aside.php:20 content-audio.php:22 content-chat.php:13 90 | #: content-gallery.php:27 content-image.php:21 content-link.php:20 91 | #: content-quote.php:20 content-single.php:25 content-status.php:20 92 | #: content-video.php:18 93 | msgid "Continue reading " 94 | msgstr "" 95 | 96 | #: content-aside.php:21 content-audio.php:23 content-chat.php:14 97 | #: content-gallery.php:28 content-image.php:22 content-link.php:21 98 | #: content-page.php:19 content-quote.php:21 content-single.php:26 99 | #: content-status.php:21 content-video.php:19 image.php:85 100 | msgid "Pages:" 101 | msgstr "" 102 | 103 | #: content-gallery.php:14 content-single.php:9 entry-header.php:2 104 | msgid "Permalink to %s" 105 | msgstr "" 106 | 107 | #: content-page.php:20 entry-footer.php:33 image.php:33 image.php:99 108 | msgid "Edit" 109 | msgstr "" 110 | 111 | #: entry-footer.php:5 112 | msgid "Posted" 113 | msgstr "" 114 | 115 | #: entry-footer.php:9 entry-footer.php:19 116 | #. translators: used between list items, there is a space after the comma 117 | msgid ", " 118 | msgstr "" 119 | 120 | #: entry-footer.php:13 121 | msgid "in %1$s" 122 | msgstr "" 123 | 124 | #: entry-footer.php:24 125 | msgid "Tagged %1$s" 126 | msgstr "" 127 | 128 | #: entry-footer.php:30 129 | msgid "Leave a comment" 130 | msgstr "" 131 | 132 | #: entry-footer.php:30 133 | msgid "1 Comment" 134 | msgstr "" 135 | 136 | #: entry-footer.php:30 137 | msgid "% Comments" 138 | msgstr "" 139 | 140 | #: footer.php:17 141 | msgid "This site is powered by %1$s and styled with %2$s" 142 | msgstr "" 143 | 144 | #: functions.php:79 145 | msgid "Primary Menu" 146 | msgstr "" 147 | 148 | #: functions.php:152 149 | msgid "SemPress Settings" 150 | msgstr "" 151 | 152 | #: functions.php:153 153 | msgid "Change the look and feel of SemPress." 154 | msgstr "" 155 | 156 | #: functions.php:164 157 | msgid "Text Color" 158 | msgstr "" 159 | 160 | #: functions.php:176 161 | msgid "Shadow Color" 162 | msgstr "" 163 | 164 | #: functions.php:188 165 | msgid "Border Color" 166 | msgstr "" 167 | 168 | #: functions.php:200 169 | msgid "Page Structure" 170 | msgstr "" 171 | 172 | #: functions.php:205 173 | msgid "Single Column (Sidebar at the bottom)" 174 | msgstr "" 175 | 176 | #: functions.php:206 177 | msgid "Multi Column (Sidebar at the right)" 178 | msgstr "" 179 | 180 | #: functions.php:255 181 | msgid "Sidebar 1" 182 | msgstr "" 183 | 184 | #: functions.php:264 185 | msgid "Sidebar 2" 186 | msgstr "" 187 | 188 | #: functions.php:266 189 | msgid "An optional second sidebar area" 190 | msgstr "" 191 | 192 | #: functions.php:316 193 | msgid "Post navigation" 194 | msgstr "" 195 | 196 | #: functions.php:326 197 | msgid " Older posts" 198 | msgstr "" 199 | 200 | #: functions.php:330 201 | msgid "Newer posts " 202 | msgstr "" 203 | 204 | #: functions.php:373 functions.php:399 205 | #. translators: 1: date, 2: time 206 | msgid "%1$s at %2$s" 207 | msgstr "" 208 | 209 | #: functions.php:375 functions.php:401 210 | msgid "(Edit)" 211 | msgstr "" 212 | 213 | #: functions.php:388 214 | msgid "%s says:" 215 | msgstr "" 216 | 217 | #: functions.php:391 218 | msgid "Your comment is awaiting moderation." 219 | msgstr "" 220 | 221 | #: functions.php:425 222 | msgid "" 223 | "Posted on
by %5$s %8$s
" 232 | msgstr "" 233 | 234 | #: functions.php:432 235 | msgid "View all posts by %s" 236 | msgstr "" 237 | 238 | #: header.php:38 239 | msgid "Main menu" 240 | msgstr "" 241 | 242 | #: header.php:39 243 | msgid "Skip to content" 244 | msgstr "" 245 | 246 | #: image.php:23 247 | msgid "" 248 | "Published at %4$s × %5$s in %7$s" 252 | msgstr "" 253 | 254 | #: image.php:37 255 | msgid "← Previous" 256 | msgstr "" 257 | 258 | #: image.php:38 259 | msgid "Next →" 260 | msgstr "" 261 | 262 | #: image.php:91 263 | msgid "" 264 | "Post a " 265 | "comment or leave a trackback: Trackback URL." 267 | msgstr "" 268 | 269 | #: image.php:93 270 | msgid "" 271 | "Comments are closed, but you can leave a trackback: Trackback URL." 274 | msgstr "" 275 | 276 | #: image.php:95 277 | msgid "" 278 | "Trackbacks are closed, but you can post a comment." 280 | msgstr "" 281 | 282 | #: image.php:97 283 | msgid "Both comments and trackbacks are currently closed." 284 | msgstr "" 285 | 286 | #: search.php:17 287 | msgid "Search Results for: %s" 288 | msgstr "" 289 | 290 | #: search.php:39 291 | msgid "" 292 | "Sorry, but nothing matched your search terms. Please try again with some " 293 | "different keywords." 294 | msgstr "" 295 | 296 | #: sidebar.php:26 297 | msgid "Meta" 298 | msgstr "" 299 | 300 | #: tag.php:18 301 | msgid "Tag Archives: %s" 302 | msgstr "" 303 | 304 | #: taxonomy-post_format.php:24 305 | msgid "%s Archives" 306 | msgstr "" 307 | 308 | #. Theme Name of the plugin/theme 309 | msgid "SemPress" 310 | msgstr "" 311 | 312 | #. Theme URI of the plugin/theme 313 | msgid "https://github.com/pfefferle/SemPress" 314 | msgstr "" 315 | 316 | #. Description of the plugin/theme 317 | msgid "" 318 | "SemPress is an extremely lightweight, responsive theme designed to show off " 319 | "your posts, quotes, and images. SemPress supports multiple post formats, " 320 | "widgets, and the option to upload a custom header or background image. The " 321 | "theme is based on HTML5 mixed with microformats, microformats v2 and " 322 | "microdata (Schema.org)." 323 | msgstr "" 324 | 325 | #. Author of the plugin/theme 326 | msgid "Matthias Pfefferle" 327 | msgstr "" 328 | 329 | #. Author URI of the plugin/theme 330 | msgid "http://notiz.blog/projects/sempress/" 331 | msgstr "" 332 | 333 | #. Template Name of the plugin/theme 334 | msgid "Full-width, no sidebar" 335 | msgstr "" 336 | 337 | #: functions.php:320 338 | msgctxt "Previous post link" 339 | msgid "←" 340 | msgstr "" 341 | 342 | #: functions.php:321 343 | msgctxt "Next post link" 344 | msgid "→" 345 | msgstr "" -------------------------------------------------------------------------------- /sempress/languages/sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/languages/sv_SE.mo -------------------------------------------------------------------------------- /sempress/languages/sv_SE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: SemPress v1.5.0-dev\n" 4 | "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n" 5 | "POT-Creation-Date: 2016-11-29 21:05+0100\n" 6 | "PO-Revision-Date: 2016-11-29 21:08+0100\n" 7 | "Last-Translator: Matthias Pfefferle \n" 8 | "Language-Team: Christopher Anderton \n" 9 | "Language: sv_SE\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Generator: Poedit 1.8.11\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" 17 | "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" 18 | "X-Poedit-Basepath: .\n" 19 | "X-Textdomain-Support: yes\n" 20 | "X-Poedit-SearchPath-0: /Users/pfefferle/Work/SemPress/sempress\n" 21 | 22 | # @ sempress 23 | #: 404.php:16 24 | msgid "Well this is somewhat embarrassing, isn’t it?" 25 | msgstr "Ja, detta är väl lite pinsamt, är det inte?" 26 | 27 | # @ sempress 28 | #: 404.php:20 29 | msgid "" 30 | "It seems we can’t find what you’re looking for. Perhaps " 31 | "searching, or one of the links below, can help." 32 | msgstr "" 33 | "Det verkar som om vi inte kan hitta det du letar efter. Kanske en sökning, " 34 | "eller någon av länkarna nedan kan hjälpa till." 35 | 36 | # @ sempress 37 | #: 404.php:27 38 | msgid "Most Used Categories" 39 | msgstr "Mest använda kategorier" 40 | 41 | # @ sempress 42 | #. translators: %1$s: smilie 43 | #: 404.php:35 44 | msgid "Try looking in the monthly archives. %1$s" 45 | msgstr "Pröva att leta i månadsarkiven %1$s" 46 | 47 | # @ sempress 48 | #: archive.php:32 archive.php:34 49 | msgid "Archives: %s" 50 | msgstr "Arkiv: %s" 51 | 52 | # @ sempress 53 | #: archive.php:36 sidebar.php:19 54 | msgid "Archives" 55 | msgstr "Arkiven" 56 | 57 | # @ sempress 58 | #: archive.php:65 author.php:63 category.php:49 index.php:43 search.php:35 59 | #: tag.php:51 taxonomy-post_format.php:49 60 | msgid "Nothing Found" 61 | msgstr "Ingenting hittades" 62 | 63 | # @ sempress 64 | #: archive.php:69 author.php:67 category.php:53 index.php:47 tag.php:55 65 | #: taxonomy-post_format.php:53 66 | msgid "" 67 | "It seems we can’t find what you’re looking for. Perhaps " 68 | "searching can help." 69 | msgstr "" 70 | "Det verkar som om vi inte kan hitta det du letar efter. Kanske en sökning " 71 | "hjälper." 72 | 73 | # @ sempress 74 | #: author.php:27 75 | msgid "Author Archives: %s" 76 | msgstr "Författararkiv: %s" 77 | 78 | # @ sempress 79 | #: category.php:18 80 | msgid "Category Archives: %s" 81 | msgstr "Kategoriarkiv: %s" 82 | 83 | # @ sempress 84 | #: comments.php:16 85 | msgid "" 86 | "This post is password protected. Enter the password to view any comments." 87 | msgstr "" 88 | "Detta inlägg är lösenordsskyddat. Ange lösenordet för att se eventuella " 89 | "kommentarer." 90 | 91 | # @ sempress 92 | #: comments.php:32 93 | msgid "One thought on “%2$s”" 94 | msgid_plural "%1$s thoughts on “%2$s”" 95 | msgstr[0] "En reaktion på “%2$s”" 96 | msgstr[1] "%1$s reaktioner på “%2$s”" 97 | 98 | # @ sempress 99 | #: comments.php:39 comments.php:59 100 | msgid "Comment navigation" 101 | msgstr "Kommentarsnavigering" 102 | 103 | # @ sempress 104 | #: comments.php:40 comments.php:60 105 | msgid "← Older Comments" 106 | msgstr "← Äldre kommentarer" 107 | 108 | # @ sempress 109 | #: comments.php:41 comments.php:61 110 | msgid "Newer Comments →" 111 | msgstr "Nyare kommentarer →" 112 | 113 | # @ sempress 114 | #: comments.php:71 115 | msgid "Comments are closed." 116 | msgstr "Kommentarer är stängda." 117 | 118 | # @ sempress 119 | #: content-aside.php:20 content-audio.php:22 content-chat.php:13 120 | #: content-gallery.php:27 content-image.php:21 content-link.php:20 121 | #: content-quote.php:20 content-single.php:25 content-status.php:20 122 | #: content-video.php:18 123 | msgid "Continue reading " 124 | msgstr "Fortsätt läs " 125 | 126 | # @ sempress 127 | #: content-aside.php:21 content-audio.php:23 content-chat.php:14 128 | #: content-gallery.php:28 content-image.php:22 content-link.php:21 129 | #: content-page.php:19 content-quote.php:21 content-single.php:26 130 | #: content-status.php:21 content-video.php:19 image.php:85 131 | msgid "Pages:" 132 | msgstr "Sidor:" 133 | 134 | #: content-gallery.php:14 content-single.php:9 entry-header.php:2 135 | msgid "Permalink to %s" 136 | msgstr "" 137 | 138 | # @ sempress 139 | #: content-page.php:20 entry-footer.php:33 image.php:33 image.php:99 140 | msgid "Edit" 141 | msgstr "Redigera" 142 | 143 | # @ sempress 144 | #: entry-footer.php:5 145 | msgid "Posted" 146 | msgstr "Publicerat" 147 | 148 | # @ sempress 149 | #. translators: used between list items, there is a space after the comma 150 | #: entry-footer.php:9 entry-footer.php:19 151 | msgid ", " 152 | msgstr ", " 153 | 154 | # @ sempress 155 | #: entry-footer.php:13 156 | msgid "in %1$s" 157 | msgstr "i %1$s" 158 | 159 | # @ sempress 160 | #: entry-footer.php:24 161 | msgid "Tagged %1$s" 162 | msgstr "Märkt %1$s" 163 | 164 | # @ sempress 165 | #: entry-footer.php:30 166 | msgid "Leave a comment" 167 | msgstr "Lämna en kommentar" 168 | 169 | # @ sempress 170 | #: entry-footer.php:30 171 | msgid "1 Comment" 172 | msgstr "1 kommentar" 173 | 174 | # @ sempress 175 | #: entry-footer.php:30 176 | msgid "% Comments" 177 | msgstr "% kommentarer" 178 | 179 | # @ sempress 180 | #: footer.php:17 181 | msgid "This site is powered by %1$s and styled with %2$s" 182 | msgstr "Denna webbplats drivs av %1$s och är stylad med %2$s" 183 | 184 | # @ sempress 185 | #: functions.php:79 186 | msgid "Primary Menu" 187 | msgstr "Primär meny" 188 | 189 | # @ sempress 190 | #: functions.php:152 191 | msgid "SemPress Settings" 192 | msgstr "SemPress-inställningar" 193 | 194 | # @ sempress 195 | #: functions.php:153 196 | msgid "Change the look and feel of SemPress." 197 | msgstr "Ändra utseendet och känslan av SemPress." 198 | 199 | # @ sempress 200 | #: functions.php:164 201 | msgid "Text Color" 202 | msgstr "Textfärg" 203 | 204 | # @ sempress 205 | #: functions.php:176 206 | msgid "Shadow Color" 207 | msgstr "Skuggfärg" 208 | 209 | # @ sempress 210 | #: functions.php:188 211 | msgid "Border Color" 212 | msgstr "Kantfärg" 213 | 214 | # @ sempress 215 | #: functions.php:200 216 | msgid "Page Structure" 217 | msgstr "Sidstruktur" 218 | 219 | # @ sempress 220 | #: functions.php:205 221 | msgid "Single Column (Sidebar at the bottom)" 222 | msgstr "Singelkolumn (sidofält längst ner)" 223 | 224 | # @ sempress 225 | #: functions.php:206 226 | msgid "Multi Column (Sidebar at the right)" 227 | msgstr "Multikolumn (sidofält till höger)" 228 | 229 | # @ sempress 230 | #: functions.php:255 231 | msgid "Sidebar 1" 232 | msgstr "Sidofält 1" 233 | 234 | # @ sempress 235 | #: functions.php:264 236 | msgid "Sidebar 2" 237 | msgstr "Sidofält 2" 238 | 239 | # @ sempress 240 | #: functions.php:266 241 | msgid "An optional second sidebar area" 242 | msgstr "Ett valfritt andra sidofältsområde" 243 | 244 | # @ sempress 245 | #: functions.php:316 246 | msgid "Post navigation" 247 | msgstr "Inläggsnavigering" 248 | 249 | # @ sempress 250 | #: functions.php:326 251 | msgid " Older posts" 252 | msgstr " Äldre inlägg" 253 | 254 | # @ sempress 255 | #: functions.php:330 256 | msgid "Newer posts " 257 | msgstr "Nyare inlägg " 258 | 259 | # @ sempress 260 | #. translators: 1: date, 2: time 261 | #: functions.php:373 functions.php:399 262 | msgid "%1$s at %2$s" 263 | msgstr "%1$s kl. %2$s" 264 | 265 | # @ sempress 266 | #: functions.php:375 functions.php:401 267 | msgid "(Edit)" 268 | msgstr "(Redigera)" 269 | 270 | # @ sempress 271 | #: functions.php:388 272 | msgid "%s says:" 273 | msgstr "%s säger:" 274 | 275 | # @ sempress 276 | #: functions.php:391 277 | msgid "Your comment is awaiting moderation." 278 | msgstr "Din kommentar inväntar granskning." 279 | 280 | #: functions.php:425 281 | msgid "" 282 | "Posted on
by " 288 | "%5$s %8$s
" 291 | msgstr "" 292 | 293 | # @ sempress 294 | #: functions.php:432 295 | msgid "View all posts by %s" 296 | msgstr "Visa alla inlägg av %s" 297 | 298 | # @ sempress 299 | #: header.php:38 300 | msgid "Main menu" 301 | msgstr "Huvudmeny" 302 | 303 | # @ sempress 304 | #: header.php:39 305 | msgid "Skip to content" 306 | msgstr "Gå till innehåll" 307 | 308 | # @ sempress 309 | #: image.php:23 310 | msgid "" 311 | "Published at %4$s × %5$s in %7$s" 315 | msgstr "" 316 | "Publicerad kl. %4$s × %5$s i %7$s" 320 | 321 | # @ sempress 322 | #: image.php:37 323 | msgid "← Previous" 324 | msgstr "← Föregående" 325 | 326 | # @ sempress 327 | #: image.php:38 328 | msgid "Next →" 329 | msgstr "Nästa →" 330 | 331 | # @ sempress 332 | #: image.php:91 333 | msgid "" 334 | "Post a " 335 | "comment or leave a trackback: Trackback URL." 337 | msgstr "" 338 | "Posta en kommentar eller lämna en trackback: Trackback URL." 342 | 343 | # @ sempress 344 | #: image.php:93 345 | msgid "" 346 | "Comments are closed, but you can leave a trackback: Trackback URL." 349 | msgstr "" 350 | "Kommentarer är stängda, men du kan lämna en trackback: Trackback URL." 353 | 354 | # @ sempress 355 | #: image.php:95 356 | msgid "" 357 | "Trackbacks are closed, but you can post a comment." 359 | msgstr "" 360 | "Trackbacks är stängda, men du kan posta en kommentar." 362 | 363 | # @ sempress 364 | #: image.php:97 365 | msgid "Both comments and trackbacks are currently closed." 366 | msgstr "Både kommentarer och trackbaks är för tillfället stängda." 367 | 368 | # @ sempress 369 | #: search.php:17 370 | msgid "Search Results for: %s" 371 | msgstr "Sökresultat för: %s" 372 | 373 | # @ sempress 374 | #: search.php:39 375 | msgid "" 376 | "Sorry, but nothing matched your search terms. Please try again with some " 377 | "different keywords." 378 | msgstr "" 379 | "Tyvärr så matchade inga av dina söktermer. Pröva igen med andra nyckelord." 380 | 381 | # @ sempress 382 | #: sidebar.php:26 383 | msgid "Meta" 384 | msgstr "Meta" 385 | 386 | # @ sempress 387 | #: tag.php:18 388 | msgid "Tag Archives: %s" 389 | msgstr "Etikettarkiv: %s" 390 | 391 | # @ sempress 392 | #: taxonomy-post_format.php:24 393 | msgid "%s Archives" 394 | msgstr "%s Arkiven" 395 | 396 | #. Theme Name of the plugin/theme 397 | msgid "SemPress" 398 | msgstr "" 399 | 400 | #. Theme URI of the plugin/theme 401 | msgid "https://github.com/pfefferle/SemPress" 402 | msgstr "" 403 | 404 | #. Description of the plugin/theme 405 | msgid "" 406 | "SemPress is an extremely lightweight, responsive theme designed to show off " 407 | "your posts, quotes, and images. SemPress supports multiple post formats, " 408 | "widgets, and the option to upload a custom header or background image. The " 409 | "theme is based on HTML5 mixed with microformats, microformats v2 and " 410 | "microdata (Schema.org)." 411 | msgstr "" 412 | 413 | #. Author of the plugin/theme 414 | msgid "Matthias Pfefferle" 415 | msgstr "" 416 | 417 | #. Author URI of the plugin/theme 418 | msgid "http://notiz.blog/projects/sempress/" 419 | msgstr "" 420 | 421 | #. Template Name of the plugin/theme 422 | msgid "Full-width, no sidebar" 423 | msgstr "" 424 | 425 | # @ sempress 426 | #: functions.php:320 427 | msgctxt "Previous post link" 428 | msgid "←" 429 | msgstr "←" 430 | 431 | # @ sempress 432 | #: functions.php:321 433 | msgctxt "Next post link" 434 | msgid "→" 435 | msgstr "→" 436 | 437 | # @ sempress 438 | #~ msgid "Page %s" 439 | #~ msgstr "Sida %s" 440 | 441 | # @ sempress 442 | #~ msgid "" 443 | #~ "Posted on
by %5$s " 449 | #~ "%8$s
" 452 | #~ msgstr "" 453 | #~ "Publicerad den
av %5$s " 459 | #~ "%8$s
" 462 | 463 | # @ sempress 464 | #~ msgid "Search here…" 465 | #~ msgstr "Sök här…" 466 | -------------------------------------------------------------------------------- /sempress/page.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 |
> 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
31 | 32 | 37 | 38 | -------------------------------------------------------------------------------- /sempress/readme.txt: -------------------------------------------------------------------------------- 1 | == Copyright == 2 | 3 | SemPress WordPress Theme, Copyright 2022 Matthias Pfefferle 4 | SemPress is distributed under the terms of the GNU GPL Version 3 5 | 6 | == Licenses == 7 | 8 | Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License. 9 | 10 | The exceptions to this license are as follows: 11 | 12 | * The Bootstrap CSS by Twitter is licensed under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] 13 | * html5shiv is licensed under the [http://opensource.org/licenses/MIT MIT license] 14 | 15 | == Changelog == 16 | 17 | = 1.7.0 = 18 | 19 | * fix: Featured image to small for full width pages 20 | * fix: Syndication links icons don't show in Safari 21 | * fix: Make AMP Compatible 22 | * fix: Call to undefined function get_header() 23 | 24 | = 1.6.3 = 25 | 26 | * fix microformats2 27 | 28 | = 1.6.2 = 29 | 30 | * "Automated Theme Scanning" fixes 31 | 32 | = 1.6.1 = 33 | 34 | * fixed Post-Kinds styling 35 | 36 | = 1.6.0 = 37 | 38 | * sidebar is no longer part of the `h-entry` 39 | * direct integration of the Syndication-Links plugin 40 | * direct integration of the Post-Kinds plugin 41 | 42 | = 1.5.12 = 43 | 44 | * fixed HTML issue in sidebar.php (thanks @billbennett) 45 | 46 | = 1.5.11 = 47 | 48 | * Support for titleless posts 49 | 50 | = 1.5.10 = 51 | 52 | * Fixed a lot of bugs 53 | * Microformats: better `u-photo` handling 54 | * Microformats: removed abandoned `h-as-*` formats 55 | 56 | = 1.5.2 = 57 | * added h-cite to be compatible to: https://indiewebcamp.com/comments-presentation#How_to_markup 58 | 59 | = 1.5.1 = 60 | * removed unused functions 61 | * updated translations 62 | * fixed bug with wrong header image-size 63 | * added sanitize callbacks 64 | * register sidebars on widgets_ini 65 | 66 | = 1.5.0 = 67 | * improved css 68 | * fixed microformats(2) 69 | 70 | = 1.4.6 = 71 | * nicer mobile view 72 | * changed pingback/trackback template 73 | 74 | = 1.4.5 = 75 | * improved editor-style 76 | 77 | = 1.4.4 = 78 | * more advanced "editor style" 79 | * fixed h1-style (sidebar) 80 | * indonesian language file 81 | * optimized rtl-styles 82 | 83 | = 1.4.3 = 84 | * fixed german language file 85 | * fixed h1-style 86 | 87 | = 1.4.2 = 88 | * fixed display for large media-types (images/iframes/embeds) 89 | * fixed translations 90 | * added schema.org/UserComments support 91 | * added nicer semantic layer (still some more work to do) 92 | * nicer blockquote stylings 93 | 94 | = 1.4 = 95 | * added genericons instead of font-awesome 96 | * optimized the mf2 support 97 | * added IndieWeb compatibility 98 | * optimized HTML5 markup 99 | 100 | = 1.3.3 = 101 | * fixed compatibility issues 102 | 103 | = 1.3.0 = 104 | * added custom-header support 105 | * added custom-background support 106 | * added support for jetpacks "infinite-scroll" 107 | * some css changes 108 | * fixed menu bug in ie7 109 | 110 | = 1.2.1 = 111 | * some css and html fixes 112 | * added micro formats v2 activity extension 113 | 114 | = 1.2.0 = 115 | * fixed microdata/schema.org and some microformats 116 | * added "editor style" support 117 | * several fixes to comply with the wordpress-directory rules 118 | 119 | = 1.1.0 = 120 | * complete redesign 121 | * some microdata/schema.org improvements 122 | 123 | = 1.0.0 = 124 | * initial release 125 | 126 | 127 | == Credits == 128 | 129 | * SemPress is based on the Toolbox Theme - http://wordpress.org/extend/themes/toolbox 130 | * Some CSS is lend from Twitters Bootstrap - http://twitter.github.com/bootstrap/ 131 | * Genericons by Automattic - http://genericons.com 132 | * html5shiv - http://code.google.com/p/html5shiv/ 133 | * Translator: 134 | * de_DE 135 | * Benjamin Hartwich - http://www.benjaminhartwich.de/ 136 | * sv_SE 137 | * Christopher Anderton - http://deluxive.se/blog/ 138 | * ru_RU 139 | * Oleg - http://0leg.net 140 | * fr_FR: 141 | * Julien Pierré - http://www.jp-software.fr/en/ 142 | * id_ID 143 | * Sugeng TiGeFa - http://tigefa4u.github.io 144 | * Rizky Luthfianto - https://github.com/rilut 145 | * nb_NO 146 | * Kristoffer Risanger - https://twitter.com/kristofferR 147 | * ko_KR 148 | * CARLITO - http://www.calitosway.net 149 | -------------------------------------------------------------------------------- /sempress/rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: SemPress 3 | 4 | Adding support for language written in a Right To Left (RTL) direction is easy - 5 | it's just a matter of overwriting all the horizontal positioning attributes 6 | of your CSS stylesheet in a separate stylesheet file named rtl.css. 7 | 8 | http://codex.wordpress.org/Right_to_Left_Language_Support 9 | 10 | */ 11 | 12 | body { 13 | direction: rtl; 14 | unicode-bidi: embed; 15 | } 16 | #primary { 17 | float: right; 18 | } 19 | #sidebar { 20 | float: left; 21 | } 22 | #content { 23 | margin: 0 0 0 40px; 24 | } 25 | #access { 26 | float: right; 27 | } 28 | #access ul { 29 | padding-right: 0; 30 | } 31 | #access li { 32 | float: right; 33 | } 34 | #access ul ul { 35 | box-shadow: 0 3px 3px rgba(0,0,0,0.2); 36 | -moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2); 37 | -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2); 38 | float: right; 39 | right: 0; 40 | left: auto; 41 | } 42 | #access ul ul ul { 43 | right: 100%; 44 | left: auto; 45 | } 46 | #content nav .nav-previous { 47 | float: right; 48 | } 49 | #content nav .nav-next { 50 | float: left; 51 | text-align: left; 52 | } 53 | /* Custom Post Types */ 54 | .format-aside:before, 55 | .format-video:before, 56 | .format-audio:before, 57 | .format-image:before, 58 | .format-gallery:before, 59 | .format-link:before, 60 | .format-quote:before, 61 | .format-chat:before, 62 | .error404:before, 63 | .sticky:before, 64 | .format-status .entry-meta .avatar { 65 | left: auto; 66 | right: -75px; 67 | } 68 | /* Tablet Portrait size to standard 960 (devices and browsers) */ 69 | @media only screen and (max-width: 959px) { 70 | #content { 71 | margin: 0; 72 | } 73 | 74 | #main .widget-area { 75 | padding-right: 0px; 76 | padding-left: 40px; 77 | } 78 | } 79 | 80 | /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ 81 | @media only screen and (max-width: 767px) { 82 | #main .widget-area { 83 | padding: 0; 84 | } 85 | } 86 | 87 | /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ 88 | @media only screen and (max-width: 479px) { 89 | #access { 90 | position: absolute; 91 | top: 0; 92 | right: 0; 93 | border: none; 94 | background-color: #464646; 95 | z-index: 99999; 96 | } 97 | 98 | #access .section-heading a:before { 99 | margin-right: 0px; 100 | margin-left: 10px; 101 | padding-left: 0px; 102 | padding-right: 25px; 103 | } 104 | 105 | #access li { 106 | float: none; 107 | margin: inherit; 108 | position: inherit; 109 | } 110 | 111 | #access ul { 112 | display: none; 113 | margin: inherit; 114 | padding-left: 0px; 115 | padding-right: 0px; 116 | background-color: transparent; 117 | -moz-box-shadow: none; 118 | -webkit-box-shadow: none; 119 | box-shadow: none; 120 | border: none; 121 | } 122 | 123 | #access ul ul { 124 | background-color: transparent; 125 | background-image: none; 126 | position: inherit; 127 | float: none; 128 | padding: inherit; 129 | margin-left: 0px; 130 | margin-right: 20px; 131 | border: none; 132 | top: inherit; 133 | left: auto; 134 | right: auto; 135 | -moz-box-shadow: none; 136 | -webkit-box-shadow: none; 137 | box-shadow: none; 138 | border: none; 139 | } 140 | } 141 | 142 | .screen-reader-text:focus { 143 | right: 15px; 144 | left: auto; 145 | } -------------------------------------------------------------------------------- /sempress/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/SemPress/c6cec30ac6c98a0c900b6b7e10ef2ebd4826a436/sempress/screenshot.png -------------------------------------------------------------------------------- /sempress/search.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 |
36 |
37 |

38 |
39 | 40 |
41 |

42 | 43 |
44 |
45 | 46 | 47 | 48 |
49 |
50 | 51 | 56 | 57 | -------------------------------------------------------------------------------- /sempress/sidebar.php: -------------------------------------------------------------------------------- 1 | 11 | 45 | -------------------------------------------------------------------------------- /sempress/single.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 29 | 30 | 31 | 32 |
33 |
34 | 35 | 40 | 41 | -------------------------------------------------------------------------------- /sempress/tag.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
> 15 | 16 | 17 | 18 |
' ); 25 | } 26 | ?> 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
51 |
52 |

53 |
54 | 55 |
56 |

57 | 58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | 66 | 71 | 72 | -------------------------------------------------------------------------------- /sempress/taxonomy-post_format.php: -------------------------------------------------------------------------------- 1 | 18 | 19 |
20 |
> 21 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 |
48 |
49 |

50 |
51 | 52 |
53 |

54 | 55 |
56 |
57 | 58 | 59 | 60 |
61 |
62 | 63 | 68 | 69 | --------------------------------------------------------------------------------