├── .gitignore ├── 404.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── archive.php ├── assets ├── main.js └── style.css ├── author.php ├── category.php ├── comments.php ├── fonts └── readme.txt ├── footer.php ├── functions.php ├── header.php ├── img ├── gravatar.jpg ├── icons │ ├── favicon.ico │ └── touch.png ├── logo.png └── logo.svg ├── index.php ├── js ├── lib │ ├── conditionizr-4.3.0.min.js │ └── modernizr-2.7.1.min.js └── scripts.js ├── languages ├── HTML5Blank.pot ├── de_DE.mo ├── de_DE.po ├── es_CL.mo ├── es_CL.po ├── es_ES.mo ├── es_ES.po ├── fr_FR.mo ├── fr_FR.po ├── hu_HU.mo ├── hu_HU.po ├── it_IT.mo ├── it_IT.po ├── nl_NL.mo ├── nl_NL.po ├── pt_BR.mo ├── pt_BR.po ├── ro_RO.mo └── ro_RO.po ├── loop.php ├── mix-manifest.json ├── package-lock.json ├── package.json ├── page.php ├── pagination.php ├── postcss.config.js ├── screenshot.png ├── search.php ├── searchform.php ├── sidebar.php ├── single.php ├── style.css ├── tag.php ├── tailwind.config.js ├── template-demo.php ├── webpack.mix.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 | 8 |
9 | 10 |

11 |

12 | 13 |

14 | 15 |
16 | 17 | 18 |
19 | 20 |
21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### [HTML5 Blank](http://html5blank.com) Changelog 2 | 3 | ## 1.4.3 (02 December, 2013) 4 | 5 | * Update [conditionizr](http://conditionizr.com) to version 4.0.0 6 | * Update jQuery to v1.10.2 7 | * Update Google Analytics snippet to _new_ universal snippet 8 | * Improved SVG script 9 | * Removed empty conditionizr asset directories for `js` and `css` 10 | * Remove redundant Modernizr file, loading from CDN 11 | 12 | ## 1.4.2 (15 June, 2013) 13 | 14 | * Add _font-size:62.5%;_ to the HTML element in CSS for _rem_ (relative-ems) sizing 15 | * Update jQuery 1.9.1 to 1.10.1 16 | 17 | ## 1.4.1 (26 April, 2013) 18 | 19 | * Removed protocol-relative scripts/styles function as causes some disruption on some local development environments 20 | * Removed hard-coded jQuery from footer as was causing issues with plugins that relied on jQuery being enqueued 21 | * Removed jQuery CDN fallback, jQuery 1.9.1 and theme scripts will be enqueued in the <head> from now on to avoid conflicts with WordPress jQuery checks/detects 22 | 23 | ## 1.4.0 (09 April, 2013) 24 | 25 | * Move pagination into it's own file (pagination.php) and include in necessary template files 26 | * Enhanced clearfix in CSS to micro clearfix hack (works by using parent element for clear) 27 | * Change all HTML structural comments to lower case for cleaner look 28 | * Add apple-touch-icon-precomposed to <head> 29 | * Moved favicon.ico to 'img/icons' 30 | * Moved new apple touch icon to 'img/icons' 31 | * Remove Conditionizr default <head> setup and add config URL (cleaner code from install) please see [conditionizr](http://conditionizr.com/docs.html) for configuration 32 | * Reordered some meta, links in <head> for better readability/consistency 33 | * Add a few structural (but empty) classes into CSS for fast styling upon install 34 | * Few CSS comments added to label areas/components better 35 | 36 | ## 1.3.9 (07 April, 2013) 37 | 38 | * Added WAI-ARIA landmark roles to enrich semantics and improve accessibility. [Stacey Cordoni](https://github.com/staceycordoni) [#32](https://github.com/toddmotto/html5blank/pull/32) 39 | * Added WAI-ARIA 'role=button' to search form <button> 40 | * Upgrade search input type from 'type=text' to 'type=search' for better use of HTML5 alongside WAI-ARIA 41 | 42 | ## 1.3.8 (02 April, 2013) 43 | 44 | * Load Modernizr from CloudFlare CDN (same as Conditionizr) 45 | * Load only Conditionizr and Modernizr through the <head>, with Conditionizr call too. 46 | * Load jQuery CDN (Google) in footer, with jQuery CDN fallback (CloudFlare) 47 | * Separated WordPress script enqueue to load Conditionizr, Modernizr in head: 'function html5blank_header_scripts()' 48 | * Hard-coded jQuery and CDN fallback into footer.php above custom theme scripts, more reliable fallback method 49 | * Load custom theme scripts in footer: 'function html5blank_footer_scripts()' 50 | * Loading scripts before closing </body> tag is best practice and not seen often in WordPress sites 51 | * Lowercase <!doctype html> in header.php 52 | * Remove empty line at end of functions.php 53 | 54 | ## 1.3.7 (01 April, 2013) 55 | 56 | * Added Portuguese (Brazil) language translation file to /languages/ from [Wesllei Henrique](https://github.com/wesllei) 57 | 58 | ## 1.3.6 (30 March, 2013) 59 | 60 | * Protocol relative jQuery and Conditionizr URLs 61 | * Protocol relative URLs for all enqueued scripts and styles 62 | * Added French language translation file to /languages/ from [Kevin Plattret](https://twitter.com/kevinplattret) 63 | * Fixed search form bug by adding name="s" attribute 64 | * Neater comments for headings in functions.php (same as style.css) 65 | * Add date ordered contributors to ReadMe. 66 | 67 | ## 1.3.5 (26 March, 2013) 68 | 69 | * Update jQuery CDN to use $_SERVER['SERVER_PORT'] to server HTTPS if needed 70 | * Edit Google Analytics string to cater for SSL/HTTPS (footer.php) 71 | * Added Spanish language translation file to /languages/ from Carlos Pinar 72 | * Indent <head> and <body> elements for better code readability 73 | * Add X-UA-Compatible meta tag to <head> to force Chrome Frame/latest document mode in IE (edge) 74 | * Format the <head> by grouping similar elements 75 | * Enhance footer.php indentation 76 | * Change footer.php fallback text 77 | * Removed HTML comments from comments.php and changed ID to class 78 | * Improve Conditionizr formatting in header.php 79 | * Set Conditionizr scripts/styles to _false_ by default (classes true) 80 | * Change pagination ID to class for better CSS 81 | * Improve indentation in 404.php for child element 82 | * Update screenshot.png 83 | * Update default HTML5 Blank logo and gravatar 84 | 85 | ## 1.3.4 (22 March, 2013) 86 | 87 | * Update Conditionizr to version 2.2.0 88 | * Replaced <aside> id with a class for better CSS 89 | * Better naming conventions for search form, more class focused 90 | * Removed JavaScript onfocus/onblur events in search input 91 | * Replaced onfocus/onblur events with HTML5 placeholder for 'Search' (this is fine for non-supporting browsers as the search button indicates it's a search input) 92 | * Search <input> has been replaced to a <button> for more flexibility, allows HTML content 93 | * Removed font-smoothing from Opera and Mozilla as no longer supported 94 | 95 | ## 1.3.3 (03 March, 2013) 96 | 97 | * Hook up Conditionizr to theme Directory using WordPress theme URI hooks 98 | 99 | ## 1.3.2 (22 February, 2013) 100 | 101 | * Optimise body CSS declaration to shorthand 102 | * Remove inner wrapper inside header element, wrapper now wraps all content 103 | * Added header and footer classes to elements to encourage class styling over element declaration (i.e. header {} always use .header {} class etc.) 104 | 105 | ## 1.3.1 (13 February, 2013) 106 | 107 | * Restructured CSS file, better architecture 108 | * Focused CSS document on a more OOCSS approach (part of restructure) 109 | * Split CSS into; Main, Structure, Pages, Images, Typography, Responsive, Misc, Print 110 | * Moved away from single-line CSS formatting to multiple-line formatting for clearer code 111 | * CSS indentation formatting, new lines for shared selectors 112 | * Update jQuery to version 1.9.1, Google CDN and CloudFlare CDN 113 | * Update Conditionizr to CDNJS CloudFlare v2.1.1 114 | * Removed mediaqueries.min.js, do we really need older browsers to be responsive, HTML5Shiv (built-in Modernizr) is enough 115 | * Updated scripts.js to ride off Modernizr.svg feature detect and remove custom script detect 116 | 117 | ## 1.3.0 (09 February, 2013) 118 | 119 | * Remove jquery.min.js 'local' fallback from /js/ folder, simply fallback to another CDN (CloudFlare), see footer.php, saves code and maintenance across all sites 120 | * Remove Google Analytics and jQuery fallback from functions.php injection, added manually in footer.php 121 | * Setup Conditionizr to supply an HTML5Shim to Less Than IE9 browsers 122 | * Updates Conditionizr to v1.2.0, enhanced retina detection and unlimited 'customScript', for polyfill usage (e.g. using respond.js and html5shim together) 123 | * Added Romanian language translation file to /languages/ 124 | 125 | ## 1.2.9 (03 February, 2013) 126 | 127 | * Readded [//conditionizr.com](Conditionizr), the raw JavaScript version 50% faster, previously removed to work on jQuery-free Conditionizr 128 | 129 | ## 1.2.8 (30 January, 2013) 130 | 131 | * Added Google Analytics DNS Prefetch to header.php to reduce [DNS latency](//www.chromium.org/developers/design-documents/dns-prefetching) 132 | 133 | ## 1.2.7 (23 January, 2013) 134 | 135 | * Update to jQuery 1.9.0 136 | * Removed [Conditionizr](http://conditionizr.com) 137 | * Remove Apple Touch Icons 138 | 139 | ## 1.2.6 (24 December, 2012) 140 | 141 | * [Conditionizr](http://conditionizr.com) legacy script and style loader added 142 | * Conditional statements removed from HTML tag (HTML classes added dynamically with Conditionizr) 143 | * Conditional statement for mediaqueries.min.js removed (added dynamically with Conditionizr, included inside scripts.js) 144 | * conditionizr.min.js and conditionizr.js enqueued 145 | * /css/conditionizr/ added with browser styles 146 | * /js/conditionizr/ added with browser scripts 147 | * Shortened ViewPort meta tag with user scalable enabled 148 | 149 | ## 1.2.5 (09 December, 2012) 150 | 151 | * Added SVG support in scripts.js for SVG graphics 152 | * Shorten DOM ready function call to shorthand 153 | * Removed web app capable meta tag, kept viewport 154 | * CSS3 Media Queries JavaScript polyfill added to header.php 155 | * Included default .wrapper style for fluid-first responsive approach 156 | * Upgraded jQuery to 1.8.3 157 | * Split stylesheets with separate call for Normalize as reset 158 | * Global Box Sizing and Font-Smoothing on all elements 159 | 160 | ## 1.2.4 (15 October, 2012) 161 | 162 | * Custom Comments callback - wp_list_comments('type=comment&callback=html5blankcomments'); editable comments now in functions.php 163 | * Custom default Gravatar now built in, with demo gravatar.jpg inside the 'img' folder, swap it out 164 | * Changed date format from the_date to the_time('F j, Y') 165 | * Changed time format from the_time to the_time('g:i a') 166 | * Changes above show the exact same when parsed, but have been changed due to the way WordPress works, which only shows one 'Date' for posts created on the same day. [More here](http://codex.wordpress.org/Function_Reference/the_date). 167 | 168 | ## 1.2.3 (13 October, 2012) 169 | 170 | * Responsive Thumbnail support, added a function which removes width and height dynamic attributes from thumbnail 171 | 172 | ## 1.2.2 (09 October, 2012) 173 | 174 | * Modified function - jQuery CDN fallback to get_template_directory_uri() instead of bloginfo('template_url') 175 | * Add Support for Custom Header 176 | * Tweaked support for Custom Background, added default color and placeholder background image 177 | 178 | ## 1.2.1 (07 October, 2012) 179 | 180 | * Custom callback for wp_nav_menu, now in functions.php with html5blank_nav(); in header.php 181 | * JavaScript added to 'scripts.js', hides URL bar after page load on iPhone/iPad, great for responsive projects 182 | * Meta tag 'apple-mobile-web-app-capable' added to header.php 183 | * Meta tag 'apple-mobile-web-app-status-bar-style' added to header.php 184 | 185 | ## 1.2.0 (03 October, 2012) 186 | 187 | * Merged pull request from J-Rabe 188 | * Localisation-support for all theme strings and empty *.pot for further translations 189 | * German translation added by J-Rabe 190 | * Functions.php includes new function 'load_theme_textdomain' for language support 191 | * Loop.php created to handle the Loop core, with get_template_part inclusion for relevant files 192 | * Loop.php includes conditional result for search results 193 | * Swapped bloginfo('template_url'); for echo get_template_directory_uri(); on Logo + Favicon 194 | * home_url instead of bloginfo('home') 195 | 196 | ## 1.1.2 (02 October, 2012) 197 | 198 | * Merged pull request for comments.php code changes 199 | * Merged pull request to remove 'rel' attribute from categories 200 | * Filter added to remove autop paragraph function from Excerpts (Manual only) 201 | * Filter added to allow shortcodes to execute inside Excerpts (Manual only) 202 | * Filter added to strip autop tags altogether from Excerpts 203 | 204 | ## 1.1.1 (30 September, 2012) 205 | 206 | * Enhanced author template 207 | * Enhanced 404 page with return home link 208 | * Semantic HTML enhancements 209 | * Added 'published by the_author' hooks as a default 210 | * Suggested include of WordPress Core CSS styles, now added 211 | 212 | ## 1.1.0 (29 September, 2012) 213 | 214 | * Core template files restructure 215 | * Semantic HTML enhancements 216 | * Google analytics (optimised) dynamically loaded through functions.php in footer 217 | * jQuery protocol relative fallback dynamically loaded through functions.php in footer 218 | * Hardcoded footer.php content (analytics and jquery) removed as it's dynamically loaded now 219 | * The Loop 'if, while, the' all inline, now inside parent section element 220 | * Pagination links brought inside section element, outside of The Loop after our article 221 | * Section elements brought outside The Loop to hold all page content 222 | * The Loop 'else' content wrapper in article tag for markup/layout consistencies 223 | * Post ID and Post Class added to article elements 224 | * Category support for 'the category' title 225 | * Enhanced Default Template page and Template Demo Page (page.php and template-demo.php) 226 | * Threaded comments support 227 | * Few obvious annotations removed 228 | * Small typo in annotation 'function.php' changed to 'functions.php' 229 | * Update theme default logo with new branding 230 | * CSS tweak for default hyperlink color change to match Logo blue 231 | 232 | ## 1.0.2 (28 September, 2012) 233 | 234 | * Update CDN and local jQuery fallbacks from 1.8.1 to 1.8.2 235 | * Conditional page loads script added to functions.php 236 | * Added Custom Background support into functions.php 237 | * Remove WordPress Admin bar by default 238 | * Remove 'text/css' from enqueued stylesheet 239 | * Updated screenshot.png logo to new HTML5 Blank branding 240 | * CSS change, :focus changed to input:focus as FireFox was adding focus styles to any element 241 | * CSS change, new Chrome updates renders fonts thicker, reduced font-weight on body from 400 to 300 242 | * CSS change, create non-semantic section below media queries, moved text-selection colors etc 243 | * CSS change, default font-family for h1-h6 Helvetica Neue with Helvetica/Arial fallbacks (previous Georgia) 244 | * CSS header theme details updated to new URL 245 | * Move toddmotto.com/html5blank/ to new html5blank.com domain 246 | * Favicon support for theme directory favicon.ico 247 | * Apple touch icon support, drag into root folder 248 | * LICENSE.md and README.md added and fully updated 249 | 250 | ## 1.0.1 (27 September, 2012) 251 | 252 | * Commit CHANGELOG.md 253 | * Commit README.md 254 | * Commit of Empty Fonts folder with readme.txt inside (for GitHub detection) 255 | 256 | ## 1.0.0 (16 September, 2012) 257 | 258 | * Initial commit 259 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # [HTML5 Blank](http://html5blank.com) License 2 | 3 | ## MIT License 4 | 5 | Copyright © 2013 HTML5 Blank // @html5blank 6 | 7 | Built by Todd Motto // @toddmotto 8 | 9 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TailwindCSS Wordpress Starter 2 | 3 | An extension of [HTML5Blank](https://github.com/toddmotto/html5blank) using TailwindCSS with Laravel Mix. 4 | 5 | On my blog you can read about [how to create a TailwindCSS Wordpress Theme](https://ciaran.co.za/tailwind-css-wordpress-theme-tutorial/). 6 | 7 | ## Installation 8 | 9 | With NPM: 10 | ```bash 11 | npm install 12 | npm run watch 13 | ``` 14 | 15 | With Yarn: 16 | ```bash 17 | yarn 18 | yarn watch 19 | ``` 20 | 21 | You can alternately run `dev` to generate readable assets, or `prod` to run a production build. 22 | 23 | ## Usage 24 | 25 | This is a blank copy of HTML5Blank with TailwindCSS installed, nothing more. Your assets build from `./assets` to `./js/scripts.js` and `./style.css` 26 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 |

8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /assets/main.js: -------------------------------------------------------------------------------- 1 | (function ($, root, undefined) { 2 | 3 | $(function () { 4 | 5 | 'use strict'; 6 | 7 | // DOM ready, take it away 8 | 9 | }); 10 | 11 | })(jQuery, this); 12 | -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: HTML5 Blank 3 | Theme URI: http://html5blank.com 4 | Description: HTML5 Blank WordPress Theme 5 | Version: 1.4.3 6 | Author: Todd Motto (@toddmotto) 7 | Author URI: http://toddmotto.com 8 | Tags: Blank, HTML5, CSS3 9 | 10 | License: MIT 11 | License URI: http://opensource.org/licenses/mit-license.php 12 | 13 | Modified by ciaran.co.za to include TailwindCSS 14 | */ 15 | 16 | @tailwind base; 17 | @tailwind components; 18 | @tailwind utilities; -------------------------------------------------------------------------------- /author.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 | 8 | 9 |

10 | 11 | 12 | 13 | 14 | 15 |

16 | 17 | 18 | 19 | 20 | 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 | 52 |
53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
61 | 62 |

63 | 64 |
65 | 66 | 67 | 68 | 69 | 70 | 71 |
72 | 73 |
74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 |

8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 |
5 | 6 | 7 | 8 | 9 | 10 |

11 | 12 | 15 | 16 | 17 | 18 |

19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /fonts/readme.txt: -------------------------------------------------------------------------------- 1 | * File added so GitHub will recognise the empty folder, please delete * -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | 'FFF', 38 | 'default-image' => get_template_directory_uri() . '/img/bg.jpg' 39 | ));*/ 40 | 41 | // Add Support for Custom Header - Uncomment below if you're going to use 42 | /*add_theme_support('custom-header', array( 43 | 'default-image' => get_template_directory_uri() . '/img/headers/default.jpg', 44 | 'header-text' => false, 45 | 'default-text-color' => '000', 46 | 'width' => 1000, 47 | 'height' => 198, 48 | 'random-default' => false, 49 | 'wp-head-callback' => $wphead_cb, 50 | 'admin-head-callback' => $adminhead_cb, 51 | 'admin-preview-callback' => $adminpreview_cb 52 | ));*/ 53 | 54 | // Enables post and comment RSS feed links to head 55 | add_theme_support('automatic-feed-links'); 56 | 57 | // Localisation Support 58 | load_theme_textdomain('html5blank', get_template_directory() . '/languages'); 59 | } 60 | 61 | /*------------------------------------*\ 62 | Functions 63 | \*------------------------------------*/ 64 | 65 | // HTML5 Blank navigation 66 | function html5blank_nav() 67 | { 68 | wp_nav_menu( 69 | array( 70 | 'theme_location' => 'header-menu', 71 | 'menu' => '', 72 | 'container' => 'div', 73 | 'container_class' => 'menu-{menu slug}-container', 74 | 'container_id' => '', 75 | 'menu_class' => 'menu', 76 | 'menu_id' => '', 77 | 'echo' => true, 78 | 'fallback_cb' => 'wp_page_menu', 79 | 'before' => '', 80 | 'after' => '', 81 | 'link_before' => '', 82 | 'link_after' => '', 83 | 'items_wrap' => '', 84 | 'depth' => 0, 85 | 'walker' => '' 86 | ) 87 | ); 88 | } 89 | 90 | // Load HTML5 Blank scripts (header.php) 91 | function html5blank_header_scripts() 92 | { 93 | if ($GLOBALS['pagenow'] != 'wp-login.php' && !is_admin()) { 94 | 95 | wp_register_script('conditionizr', get_template_directory_uri() . '/js/lib/conditionizr-4.3.0.min.js', array(), '4.3.0'); // Conditionizr 96 | wp_enqueue_script('conditionizr'); // Enqueue it! 97 | 98 | wp_register_script('modernizr', get_template_directory_uri() . '/js/lib/modernizr-2.7.1.min.js', array(), '2.7.1'); // Modernizr 99 | wp_enqueue_script('modernizr'); // Enqueue it! 100 | 101 | wp_register_script('html5blankscripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'), '1.0.0'); // Custom scripts 102 | wp_enqueue_script('html5blankscripts'); // Enqueue it! 103 | } 104 | } 105 | 106 | // Load HTML5 Blank conditional scripts 107 | function html5blank_conditional_scripts() 108 | { 109 | if (is_page('pagenamehere')) { 110 | wp_register_script('scriptname', get_template_directory_uri() . '/js/scriptname.js', array('jquery'), '1.0.0'); // Conditional script(s) 111 | wp_enqueue_script('scriptname'); // Enqueue it! 112 | } 113 | } 114 | 115 | // Load HTML5 Blank styles 116 | function html5blank_styles() 117 | { 118 | wp_register_style('normalize', get_template_directory_uri() . '/normalize.css', array(), '1.0', 'all'); 119 | wp_enqueue_style('normalize'); // Enqueue it! 120 | 121 | wp_register_style('html5blank', get_template_directory_uri() . '/style.css', array(), '1.0', 'all'); 122 | wp_enqueue_style('html5blank'); // Enqueue it! 123 | } 124 | 125 | // Register HTML5 Blank Navigation 126 | function register_html5_menu() 127 | { 128 | register_nav_menus(array( // Using array to specify more menus if needed 129 | 'header-menu' => __('Header Menu', 'html5blank'), // Main Navigation 130 | 'sidebar-menu' => __('Sidebar Menu', 'html5blank'), // Sidebar Navigation 131 | 'extra-menu' => __('Extra Menu', 'html5blank') // Extra Navigation if needed (duplicate as many as you need!) 132 | )); 133 | } 134 | 135 | // Remove the
surrounding the dynamic navigation to cleanup markup 136 | function my_wp_nav_menu_args($args = '') 137 | { 138 | $args['container'] = false; 139 | return $args; 140 | } 141 | 142 | // Remove Injected classes, ID's and Page ID's from Navigation
  • items 143 | function my_css_attributes_filter($var) 144 | { 145 | return is_array($var) ? array() : ''; 146 | } 147 | 148 | // Remove invalid rel attribute values in the categorylist 149 | function remove_category_rel_from_category_list($thelist) 150 | { 151 | return str_replace('rel="category tag"', 'rel="tag"', $thelist); 152 | } 153 | 154 | // Add page slug to body class, love this - Credit: Starkers Wordpress Theme 155 | function add_slug_to_body_class($classes) 156 | { 157 | global $post; 158 | if (is_home()) { 159 | $key = array_search('blog', $classes); 160 | if ($key > -1) { 161 | unset($classes[$key]); 162 | } 163 | } elseif (is_page()) { 164 | $classes[] = sanitize_html_class($post->post_name); 165 | } elseif (is_singular()) { 166 | $classes[] = sanitize_html_class($post->post_name); 167 | } 168 | 169 | return $classes; 170 | } 171 | 172 | // If Dynamic Sidebar Exists 173 | if (function_exists('register_sidebar')) 174 | { 175 | // Define Sidebar Widget Area 1 176 | register_sidebar(array( 177 | 'name' => __('Widget Area 1', 'html5blank'), 178 | 'description' => __('Description for this widget-area...', 'html5blank'), 179 | 'id' => 'widget-area-1', 180 | 'before_widget' => '
    ', 181 | 'after_widget' => '
    ', 182 | 'before_title' => '

    ', 183 | 'after_title' => '

    ' 184 | )); 185 | 186 | // Define Sidebar Widget Area 2 187 | register_sidebar(array( 188 | 'name' => __('Widget Area 2', 'html5blank'), 189 | 'description' => __('Description for this widget-area...', 'html5blank'), 190 | 'id' => 'widget-area-2', 191 | 'before_widget' => '
    ', 192 | 'after_widget' => '
    ', 193 | 'before_title' => '

    ', 194 | 'after_title' => '

    ' 195 | )); 196 | } 197 | 198 | // Remove wp_head() injected Recent Comment styles 199 | function my_remove_recent_comments_style() 200 | { 201 | global $wp_widget_factory; 202 | remove_action('wp_head', array( 203 | $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 204 | 'recent_comments_style' 205 | )); 206 | } 207 | 208 | // Pagination for paged posts, Page 1, Page 2, Page 3, with Next and Previous Links, No plugin 209 | function html5wp_pagination() 210 | { 211 | global $wp_query; 212 | $big = 999999999; 213 | echo paginate_links(array( 214 | 'base' => str_replace($big, '%#%', get_pagenum_link($big)), 215 | 'format' => '?paged=%#%', 216 | 'current' => max(1, get_query_var('paged')), 217 | 'total' => $wp_query->max_num_pages 218 | )); 219 | } 220 | 221 | // Custom Excerpts 222 | function html5wp_index($length) // Create 20 Word Callback for Index page Excerpts, call using html5wp_excerpt('html5wp_index'); 223 | { 224 | return 20; 225 | } 226 | 227 | // Create 40 Word Callback for Custom Post Excerpts, call using html5wp_excerpt('html5wp_custom_post'); 228 | function html5wp_custom_post($length) 229 | { 230 | return 40; 231 | } 232 | 233 | // Create the Custom Excerpts callback 234 | function html5wp_excerpt($length_callback = '', $more_callback = '') 235 | { 236 | global $post; 237 | if (function_exists($length_callback)) { 238 | add_filter('excerpt_length', $length_callback); 239 | } 240 | if (function_exists($more_callback)) { 241 | add_filter('excerpt_more', $more_callback); 242 | } 243 | $output = get_the_excerpt(); 244 | $output = apply_filters('wptexturize', $output); 245 | $output = apply_filters('convert_chars', $output); 246 | $output = '

    ' . $output . '

    '; 247 | echo $output; 248 | } 249 | 250 | // Custom View Article link to Post 251 | function html5_blank_view_article($more) 252 | { 253 | global $post; 254 | return '... ' . __('View Article', 'html5blank') . ''; 255 | } 256 | 257 | // Remove Admin bar 258 | function remove_admin_bar() 259 | { 260 | return false; 261 | } 262 | 263 | // Remove 'text/css' from our enqueued stylesheet 264 | function html5_style_remove($tag) 265 | { 266 | return preg_replace('~\s+type=["\'][^"\']++["\']~', '', $tag); 267 | } 268 | 269 | // Remove thumbnail width and height dimensions that prevent fluid images in the_thumbnail 270 | function remove_thumbnail_dimensions( $html ) 271 | { 272 | $html = preg_replace('/(width|height)=\"\d*\"\s/', "", $html); 273 | return $html; 274 | } 275 | 276 | // Custom Gravatar in Settings > Discussion 277 | function html5blankgravatar ($avatar_defaults) 278 | { 279 | $myavatar = get_template_directory_uri() . '/img/gravatar.jpg'; 280 | $avatar_defaults[$myavatar] = "Custom Gravatar"; 281 | return $avatar_defaults; 282 | } 283 | 284 | // Threaded Comments 285 | function enable_threaded_comments() 286 | { 287 | if (!is_admin()) { 288 | if (is_singular() AND comments_open() AND (get_option('thread_comments') == 1)) { 289 | wp_enqueue_script('comment-reply'); 290 | } 291 | } 292 | } 293 | 294 | // Custom Comments Callback 295 | function html5blankcomments($comment, $args, $depth) 296 | { 297 | $GLOBALS['comment'] = $comment; 298 | extract($args, EXTR_SKIP); 299 | 300 | if ( 'div' == $args['style'] ) { 301 | $tag = 'div'; 302 | $add_below = 'comment'; 303 | } else { 304 | $tag = 'li'; 305 | $add_below = 'div-comment'; 306 | } 307 | ?> 308 | 309 | < id="comment-"> 310 | 311 |
    312 | 313 |
    314 | 315 | %s says:'), get_comment_author_link()) ?> 316 |
    317 | comment_approved == '0') : ?> 318 | 319 |
    320 | 321 | 322 | 327 | 328 | 329 | 330 |
    331 | $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?> 332 |
    333 | 334 |
    335 | 336 | Discussion 368 | add_filter('body_class', 'add_slug_to_body_class'); // Add slug to body class (Starkers build) 369 | add_filter('widget_text', 'do_shortcode'); // Allow shortcodes in Dynamic Sidebar 370 | add_filter('widget_text', 'shortcode_unautop'); // Remove

    tags in Dynamic Sidebars (better!) 371 | add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args'); // Remove surrounding

    from WP Navigation 372 | // add_filter('nav_menu_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation
  • injected classes (Commented out by default) 373 | // add_filter('nav_menu_item_id', 'my_css_attributes_filter', 100, 1); // Remove Navigation
  • injected ID (Commented out by default) 374 | // add_filter('page_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation
  • Page ID's (Commented out by default) 375 | add_filter('the_category', 'remove_category_rel_from_category_list'); // Remove invalid rel attribute 376 | add_filter('the_excerpt', 'shortcode_unautop'); // Remove auto

    tags in Excerpt (Manual Excerpts only) 377 | add_filter('the_excerpt', 'do_shortcode'); // Allows Shortcodes to be executed in Excerpt (Manual Excerpts only) 378 | add_filter('excerpt_more', 'html5_blank_view_article'); // Add 'View Article' button instead of [...] for Excerpts 379 | add_filter('show_admin_bar', 'remove_admin_bar'); // Remove Admin bar 380 | add_filter('style_loader_tag', 'html5_style_remove'); // Remove 'text/css' from enqueued stylesheet 381 | add_filter('post_thumbnail_html', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to thumbnails 382 | add_filter('image_send_to_editor', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to post images 383 | 384 | // Remove Filters 385 | remove_filter('the_excerpt', 'wpautop'); // Remove

    tags from Excerpt altogether 386 | 387 | // Shortcodes 388 | add_shortcode('html5_shortcode_demo', 'html5_shortcode_demo'); // You can place [html5_shortcode_demo] in Pages, Posts now. 389 | add_shortcode('html5_shortcode_demo_2', 'html5_shortcode_demo_2'); // Place [html5_shortcode_demo_2] in Pages, Posts now. 390 | 391 | // Shortcodes above would be nested like this - 392 | // [html5_shortcode_demo] [html5_shortcode_demo_2] Here's the page title! [/html5_shortcode_demo_2] [/html5_shortcode_demo] 393 | 394 | /*------------------------------------*\ 395 | Custom Post Types 396 | \*------------------------------------*/ 397 | 398 | // Create 1 Custom Post type for a Demo, called HTML5-Blank 399 | function create_post_type_html5() 400 | { 401 | register_taxonomy_for_object_type('category', 'html5-blank'); // Register Taxonomies for Category 402 | register_taxonomy_for_object_type('post_tag', 'html5-blank'); 403 | register_post_type('html5-blank', // Register Custom Post Type 404 | array( 405 | 'labels' => array( 406 | 'name' => __('HTML5 Blank Custom Post', 'html5blank'), // Rename these to suit 407 | 'singular_name' => __('HTML5 Blank Custom Post', 'html5blank'), 408 | 'add_new' => __('Add New', 'html5blank'), 409 | 'add_new_item' => __('Add New HTML5 Blank Custom Post', 'html5blank'), 410 | 'edit' => __('Edit', 'html5blank'), 411 | 'edit_item' => __('Edit HTML5 Blank Custom Post', 'html5blank'), 412 | 'new_item' => __('New HTML5 Blank Custom Post', 'html5blank'), 413 | 'view' => __('View HTML5 Blank Custom Post', 'html5blank'), 414 | 'view_item' => __('View HTML5 Blank Custom Post', 'html5blank'), 415 | 'search_items' => __('Search HTML5 Blank Custom Post', 'html5blank'), 416 | 'not_found' => __('No HTML5 Blank Custom Posts found', 'html5blank'), 417 | 'not_found_in_trash' => __('No HTML5 Blank Custom Posts found in Trash', 'html5blank') 418 | ), 419 | 'public' => true, 420 | 'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages 421 | 'has_archive' => true, 422 | 'supports' => array( 423 | 'title', 424 | 'editor', 425 | 'excerpt', 426 | 'thumbnail' 427 | ), // Go to Dashboard Custom HTML5 Blank post for supports 428 | 'can_export' => true, // Allows export in Tools > Export 429 | 'taxonomies' => array( 430 | 'post_tag', 431 | 'category' 432 | ) // Add Category and Post Tags support 433 | )); 434 | } 435 | 436 | /*------------------------------------*\ 437 | ShortCode Functions 438 | \*------------------------------------*/ 439 | 440 | // Shortcode Demo with Nested Capability 441 | function html5_shortcode_demo($atts, $content = null) 442 | { 443 | return '

    ' . do_shortcode($content) . '
    '; // do_shortcode allows for nested Shortcodes 444 | } 445 | 446 | // Shortcode Demo with simple

    tag 447 | function html5_shortcode_demo_2($atts, $content = null) // Demo Heading H2 shortcode, allows for nesting within above element. Fully expandable. 448 | { 449 | return '

    ' . $content . '

    '; 450 | } 451 | 452 | ?> 453 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | class="no-js"> 3 | 4 | 5 | <?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 24 | 25 | 26 | > 27 | 28 | 29 |
    30 | 31 | 32 | 50 | 51 | -------------------------------------------------------------------------------- /img/gravatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/img/gravatar.jpg -------------------------------------------------------------------------------- /img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/img/icons/favicon.ico -------------------------------------------------------------------------------- /img/icons/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/img/icons/touch.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/img/logo.png -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 11 | 12 | 15 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 33 | 35 | 38 | 39 | 40 | 42 | 44 | 47 | 49 | 51 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |

    8 | 9 | 10 | 11 | 12 | 13 |
    14 | 15 |
    16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /js/lib/conditionizr-4.3.0.min.js: -------------------------------------------------------------------------------- 1 | /*! Conditionizr v4.3.0 | (c) 2014 @toddmotto, @markgdyr | MIT license | conditionizr.com */ 2 | !function(a,b){"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?module.exports=b:a.conditionizr=b()}(this,function(){"use strict";var a,b={},c=document.head||document.getElementsByTagName("head")[0],d=function(b,d,e){var f=e?b:a+b+("style"===d?".css":".js");switch(d){case"script":var g=document.createElement("script");g.src=f,c.appendChild(g);break;case"style":var h=document.createElement("link");h.href=f,h.rel="stylesheet",c.appendChild(h);break;case"class":document.documentElement.className+=" "+b}};return b.config=function(c){var e=c||{},f=e.tests;a=e.assets||"";for(var g in f){var h=g.toLowerCase();if(b[h])for(var i=f[g],j=i.length;j--;)d(h,i[j])}},b.add=function(a,c,e){var f=a.toLowerCase();if(b[f]=e(),b[f])for(var g=c.length;g--;)d(f,c[g])},b.on=function(a,c){var d=/^\!/;(b[a.toLowerCase()]||d.test(a)&&!b[a.replace(d,"")])&&c()},b.load=b.polyfill=function(a,c){for(var e=/\.js$/.test(a)?"script":"style",f=c.length;f--;)b[c[f].toLowerCase()]&&d(a,e,!0)},b}); -------------------------------------------------------------------------------- /js/lib/modernizr-2.7.1.min.js: -------------------------------------------------------------------------------- 1 | window.Modernizr=function(a,b,c){function C(a){j.cssText=a}function D(a,b){return C(n.join(a+";")+(b||""))}function E(a,b){return typeof a===b}function F(a,b){return!!~(""+a).indexOf(b)}function G(a,b){for(var d in a){var e=a[d];if(!F(e,"-")&&j[e]!==c)return"pfx"==b?e:!0}return!1}function H(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:E(f,"function")?f.bind(d||b):f}return!1}function I(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return E(b,"string")||E(b,"undefined")?G(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),H(e,b,c))}function J(){e.input=function(c){for(var d=0,e=c.length;e>d;d++)u[c[d]]=!!(c[d]in k);return u.list&&(u.list=!(!b.createElement("datalist")||!a.HTMLDataListElement)),u}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var e,f,h,d=0,i=a.length;i>d;d++)k.setAttribute("type",f=a[d]),e="text"!==k.type,e&&(k.value=l,k.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&k.style.WebkitAppearance!==c?(g.appendChild(k),h=b.defaultView,e=h.getComputedStyle&&"textfield"!==h.getComputedStyle(k,null).WebkitAppearance&&0!==k.offsetHeight,g.removeChild(k)):/^(search|tel)$/.test(f)||(e=/^(url|email)$/.test(f)?k.checkValidity&&k.checkValidity()===!1:k.value!=l)),t[a[d]]=!!e;return t}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var x,B,d="2.7.1",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k=b.createElement("input"),l=":)",m={}.toString,n=" -webkit- -moz- -o- -ms- ".split(" "),o="Webkit Moz O ms",p=o.split(" "),q=o.toLowerCase().split(" "),r={svg:"http://www.w3.org/2000/svg"},s={},t={},u={},v=[],w=v.slice,y=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))for(;d--;)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["­",'"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},z=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=E(e[d],"function"),E(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),A={}.hasOwnProperty;B=E(A,"undefined")||E(A.call,"undefined")?function(a,b){return b in a&&E(a.constructor.prototype[b],"undefined")}:function(a,b){return A.call(a,b)},Function.prototype.bind||(Function.prototype.bind=function(a){var b=this;if("function"!=typeof b)throw new TypeError;var c=w.call(arguments,1),d=function(){if(this instanceof d){var e=function(){};e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(w.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(w.call(arguments)))};return d}),s.flexbox=function(){return I("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!(!a.getContext||!a.getContext("2d"))},s.canvastext=function(){return!(!e.canvas||!E(b.createElement("canvas").getContext("2d").fillText,"function"))},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=9===a.offsetTop}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!I("indexedDB",a)},s.hashchange=function(){return z("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!(!a.history||!history.pushState)},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return C("background-color:rgba(150,255,150,.5)"),F(j.backgroundColor,"rgba")},s.hsla=function(){return C("background-color:hsla(120,40%,100%,.5)"),F(j.backgroundColor,"rgba")||F(j.backgroundColor,"hsla")},s.multiplebgs=function(){return C("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return I("backgroundSize")},s.borderimage=function(){return I("borderImage")},s.borderradius=function(){return I("borderRadius")},s.boxshadow=function(){return I("boxShadow")},s.textshadow=function(){return""===b.createElement("div").style.textShadow},s.opacity=function(){return D("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return I("animationName")},s.csscolumns=function(){return I("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return C((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),F(j.backgroundImage,"gradient")},s.cssreflections=function(){return I("boxReflect")},s.csstransforms=function(){return!!I("transform")},s.csstransforms3d=function(){var a=!!I("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b){a=9===b.offsetLeft&&3===b.offsetHeight}),a},s.csstransitions=function(){return I("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&0===g.indexOf(d.split(" ")[0])}),a},s.generatedcontent=function(){var a;return y(["#",h,"{font:0/0 a}#",h,':after{content:"',l,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{(c=!!a.canPlayType)&&(c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,""))}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{(c=!!a.canPlayType)&&(c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,""))}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var K in s)B(s,K)&&(x=K.toLowerCase(),e[x]=s[K](),v.push((e[x]?"":"no-")+x));return e.input||J(),e.addTest=function(a,b){if("object"==typeof a)for(var d in a)B(a,d)&&e.addTest(d,a[d]);else{if(a=a.toLowerCase(),e[a]!==c)return e;b="function"==typeof b?b():b,"undefined"!=typeof f&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},C(""),i=k=null,function(a,b){function l(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 m(){var a=s.elements;return"string"==typeof a?a.split(" "):a}function n(a){var b=j[a[h]];return b||(b={},i++,a[h]=i,j[i]=b),b}function o(a,c,d){if(c||(c=b),k)return c.createElement(a);d||(d=n(c));var g;return g=d.cache[a]?d.cache[a].cloneNode():f.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!g.canHaveChildren||e.test(a)||g.tagUrn?g:d.frag.appendChild(g)}function p(a,c){if(a||(a=b),k)return a.createDocumentFragment();c=c||n(a);for(var d=c.frag.cloneNode(),e=0,f=m(),g=f.length;g>e;e++)d.createElement(f[e]);return d}function q(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return s.shivMethods?o(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(s,b.frag)}function r(a){a||(a=b);var c=n(a);return!s.shivCSS||g||c.hasCSS||(c.hasCSS=!!l(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),k||q(a,c),a}var g,k,c="3.7.0",d=a.html5||{},e=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,f=/^(?: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,h="_html5shiv",i=0,j={};!function(){try{var a=b.createElement("a");a.innerHTML="",g="hidden"in a,k=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){g=!0,k=!0}}();var s={elements:d.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:c,shivCSS:d.shivCSS!==!1,supportsUnknownElements:k,shivMethods:d.shivMethods!==!1,type:"default",shivDocument:r,createElement:o,createDocumentFragment:p};a.html5=s,r(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.hasEvent=z,e.testProp=function(a){return G([a])},e.testAllProps=I,e.testStyles=y,e.prefixed=function(a,b,c){return b?I(a,b,c):I(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var A,B,l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}};B=function(a){function b(a){var e,f,g,a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a};for(f=0;d>f;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;b>f;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var c,b=0;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var m,n,h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i { // webpackBootstrap 2 | /******/ var __webpack_modules__ = ({ 3 | 4 | /***/ "./assets/main.js": 5 | /*!************************!*\ 6 | !*** ./assets/main.js ***! 7 | \************************/ 8 | /***/ (function() { 9 | 10 | (function ($, root, undefined) { 11 | $(function () { 12 | 'use strict'; // DOM ready, take it away 13 | }); 14 | })(jQuery, this); 15 | 16 | /***/ }), 17 | 18 | /***/ "./assets/style.css": 19 | /*!**************************!*\ 20 | !*** ./assets/style.css ***! 21 | \**************************/ 22 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { 23 | 24 | "use strict"; 25 | __webpack_require__.r(__webpack_exports__); 26 | // extracted by mini-css-extract-plugin 27 | 28 | 29 | /***/ }) 30 | 31 | /******/ }); 32 | /************************************************************************/ 33 | /******/ // The module cache 34 | /******/ var __webpack_module_cache__ = {}; 35 | /******/ 36 | /******/ // The require function 37 | /******/ function __webpack_require__(moduleId) { 38 | /******/ // Check if module is in cache 39 | /******/ var cachedModule = __webpack_module_cache__[moduleId]; 40 | /******/ if (cachedModule !== undefined) { 41 | /******/ return cachedModule.exports; 42 | /******/ } 43 | /******/ // Create a new module (and put it into the cache) 44 | /******/ var module = __webpack_module_cache__[moduleId] = { 45 | /******/ // no module.id needed 46 | /******/ // no module.loaded needed 47 | /******/ exports: {} 48 | /******/ }; 49 | /******/ 50 | /******/ // Execute the module function 51 | /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__); 52 | /******/ 53 | /******/ // Return the exports of the module 54 | /******/ return module.exports; 55 | /******/ } 56 | /******/ 57 | /******/ // expose the modules object (__webpack_modules__) 58 | /******/ __webpack_require__.m = __webpack_modules__; 59 | /******/ 60 | /************************************************************************/ 61 | /******/ /* webpack/runtime/chunk loaded */ 62 | /******/ (() => { 63 | /******/ var deferred = []; 64 | /******/ __webpack_require__.O = (result, chunkIds, fn, priority) => { 65 | /******/ if(chunkIds) { 66 | /******/ priority = priority || 0; 67 | /******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1]; 68 | /******/ deferred[i] = [chunkIds, fn, priority]; 69 | /******/ return; 70 | /******/ } 71 | /******/ var notFulfilled = Infinity; 72 | /******/ for (var i = 0; i < deferred.length; i++) { 73 | /******/ var [chunkIds, fn, priority] = deferred[i]; 74 | /******/ var fulfilled = true; 75 | /******/ for (var j = 0; j < chunkIds.length; j++) { 76 | /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) { 77 | /******/ chunkIds.splice(j--, 1); 78 | /******/ } else { 79 | /******/ fulfilled = false; 80 | /******/ if(priority < notFulfilled) notFulfilled = priority; 81 | /******/ } 82 | /******/ } 83 | /******/ if(fulfilled) { 84 | /******/ deferred.splice(i--, 1) 85 | /******/ var r = fn(); 86 | /******/ if (r !== undefined) result = r; 87 | /******/ } 88 | /******/ } 89 | /******/ return result; 90 | /******/ }; 91 | /******/ })(); 92 | /******/ 93 | /******/ /* webpack/runtime/hasOwnProperty shorthand */ 94 | /******/ (() => { 95 | /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) 96 | /******/ })(); 97 | /******/ 98 | /******/ /* webpack/runtime/make namespace object */ 99 | /******/ (() => { 100 | /******/ // define __esModule on exports 101 | /******/ __webpack_require__.r = (exports) => { 102 | /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { 103 | /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); 104 | /******/ } 105 | /******/ Object.defineProperty(exports, '__esModule', { value: true }); 106 | /******/ }; 107 | /******/ })(); 108 | /******/ 109 | /******/ /* webpack/runtime/jsonp chunk loading */ 110 | /******/ (() => { 111 | /******/ // no baseURI 112 | /******/ 113 | /******/ // object to store loaded and loading chunks 114 | /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched 115 | /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded 116 | /******/ var installedChunks = { 117 | /******/ "/js/scripts": 0, 118 | /******/ "style": 0 119 | /******/ }; 120 | /******/ 121 | /******/ // no chunk on demand loading 122 | /******/ 123 | /******/ // no prefetching 124 | /******/ 125 | /******/ // no preloaded 126 | /******/ 127 | /******/ // no HMR 128 | /******/ 129 | /******/ // no HMR manifest 130 | /******/ 131 | /******/ __webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0); 132 | /******/ 133 | /******/ // install a JSONP callback for chunk loading 134 | /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => { 135 | /******/ var [chunkIds, moreModules, runtime] = data; 136 | /******/ // add "moreModules" to the modules object, 137 | /******/ // then flag all "chunkIds" as loaded and fire callback 138 | /******/ var moduleId, chunkId, i = 0; 139 | /******/ for(moduleId in moreModules) { 140 | /******/ if(__webpack_require__.o(moreModules, moduleId)) { 141 | /******/ __webpack_require__.m[moduleId] = moreModules[moduleId]; 142 | /******/ } 143 | /******/ } 144 | /******/ if(runtime) var result = runtime(__webpack_require__); 145 | /******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data); 146 | /******/ for(;i < chunkIds.length; i++) { 147 | /******/ chunkId = chunkIds[i]; 148 | /******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) { 149 | /******/ installedChunks[chunkId][0](); 150 | /******/ } 151 | /******/ installedChunks[chunkIds[i]] = 0; 152 | /******/ } 153 | /******/ return __webpack_require__.O(result); 154 | /******/ } 155 | /******/ 156 | /******/ var chunkLoadingGlobal = self["webpackChunkhtml5blankwptail"] = self["webpackChunkhtml5blankwptail"] || []; 157 | /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0)); 158 | /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal)); 159 | /******/ })(); 160 | /******/ 161 | /************************************************************************/ 162 | /******/ 163 | /******/ // startup 164 | /******/ // Load entry module and return exports 165 | /******/ // This entry module depends on other loaded chunks and execution need to be delayed 166 | /******/ __webpack_require__.O(undefined, ["style"], () => (__webpack_require__("./assets/main.js"))) 167 | /******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["style"], () => (__webpack_require__("./assets/style.css"))) 168 | /******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__); 169 | /******/ 170 | /******/ })() 171 | ; -------------------------------------------------------------------------------- /languages/HTML5Blank.pot: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2013-09-18 00:26+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Jürgen Rabe | www.egado.de \n" 7 | "Language-Team: \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 1.5.5\n" 12 | "X-Poedit-SourceCharset: UTF-8\n" 13 | "X-Poedit-KeywordsList: _e;__\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Poedit-SearchPath-0: .\n" 16 | "X-Poedit-SearchPath-1: ..\n" 17 | 18 | #: ../404.php:9 19 | msgid "Page not found" 20 | msgstr "" 21 | 22 | #: ../404.php:11 23 | msgid "Return home?" 24 | msgstr "" 25 | 26 | #: ../archive.php:6 27 | msgid "Archives" 28 | msgstr "" 29 | 30 | #: ../author.php:8 31 | msgid "Author Archives for " 32 | msgstr "" 33 | 34 | #: ../author.php:14 35 | msgid "About " 36 | msgstr "" 37 | 38 | #: ../author.php:41 ../loop.php:22 ../single.php:27 39 | msgid "Published by" 40 | msgstr "" 41 | 42 | #: ../author.php:42 ../loop.php:23 ../single.php:28 43 | msgid "Leave your thoughts" 44 | msgstr "" 45 | 46 | #: ../author.php:42 ../loop.php:23 ../single.php:28 47 | msgid "1 Comment" 48 | msgstr "" 49 | 50 | #: ../author.php:42 ../loop.php:23 ../single.php:28 51 | msgid "% Comments" 52 | msgstr "" 53 | 54 | #: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53 55 | #: ../template-demo.php:31 56 | msgid "Sorry, nothing to display." 57 | msgstr "" 58 | 59 | #: ../category.php:6 60 | msgid "Categories for" 61 | msgstr "" 62 | 63 | #: ../comments.php:3 64 | msgid "Post is password protected. Enter the password to view any comments." 65 | msgstr "" 66 | 67 | #: ../comments.php:18 68 | msgid "Comments are closed here." 69 | msgstr "" 70 | 71 | #: ../footer.php:6 72 | msgid "Powered by" 73 | msgstr "" 74 | 75 | #: ../functions.php:133 76 | msgid "Header Menu" 77 | msgstr "" 78 | 79 | #: ../functions.php:134 80 | msgid "Sidebar Menu" 81 | msgstr "" 82 | 83 | #: ../functions.php:135 84 | msgid "Extra Menu" 85 | msgstr "" 86 | 87 | #: ../functions.php:181 88 | msgid "Widget Area 1" 89 | msgstr "" 90 | 91 | #: ../functions.php:182 ../functions.php:193 92 | msgid "Description for this widget-area..." 93 | msgstr "" 94 | 95 | #: ../functions.php:192 96 | msgid "Widget Area 2" 97 | msgstr "" 98 | 99 | #: ../functions.php:258 100 | msgid "View Article" 101 | msgstr "" 102 | 103 | #: ../functions.php:319 104 | #, php-format 105 | msgid "%s says:" 106 | msgstr "" 107 | 108 | #: ../functions.php:322 109 | msgid "Your comment is awaiting moderation." 110 | msgstr "" 111 | 112 | #: ../functions.php:328 113 | #, php-format 114 | msgid "%1$s at %2$s" 115 | msgstr "" 116 | 117 | #: ../functions.php:328 118 | msgid "(Edit)" 119 | msgstr "" 120 | 121 | #: ../functions.php:411 ../functions.php:412 122 | msgid "HTML5 Blank Custom Post" 123 | msgstr "" 124 | 125 | #: ../functions.php:413 126 | msgid "Add New" 127 | msgstr "" 128 | 129 | #: ../functions.php:414 130 | msgid "Add New HTML5 Blank Custom Post" 131 | msgstr "" 132 | 133 | #: ../functions.php:415 134 | msgid "Edit" 135 | msgstr "" 136 | 137 | #: ../functions.php:416 138 | msgid "Edit HTML5 Blank Custom Post" 139 | msgstr "" 140 | 141 | #: ../functions.php:417 142 | msgid "New HTML5 Blank Custom Post" 143 | msgstr "" 144 | 145 | #: ../functions.php:418 ../functions.php:419 146 | msgid "View HTML5 Blank Custom Post" 147 | msgstr "" 148 | 149 | #: ../functions.php:420 150 | msgid "Search HTML5 Blank Custom Post" 151 | msgstr "" 152 | 153 | #: ../functions.php:421 154 | msgid "No HTML5 Blank Custom Posts found" 155 | msgstr "" 156 | 157 | #: ../functions.php:422 158 | msgid "No HTML5 Blank Custom Posts found in Trash" 159 | msgstr "" 160 | 161 | #: ../index.php:6 162 | msgid "Latest Posts" 163 | msgstr "" 164 | 165 | #: ../search.php:6 166 | #, php-format 167 | msgid "%s Search Results for " 168 | msgstr "" 169 | 170 | #: ../searchform.php:3 171 | msgid "To search, type and hit enter." 172 | msgstr "" 173 | 174 | #: ../searchform.php:4 175 | msgid "Search" 176 | msgstr "" 177 | 178 | #: ../single.php:33 179 | msgid "Tags: " 180 | msgstr "" 181 | 182 | #: ../single.php:35 183 | msgid "Categorised in: " 184 | msgstr "" 185 | 186 | #: ../single.php:37 187 | msgid "This post was written by " 188 | msgstr "" 189 | 190 | #: ../tag.php:6 191 | msgid "Tag Archive: " 192 | msgstr "" 193 | 194 | #: ../searchform.php:3 195 | msgid "To search, type and hit enter." 196 | msgstr "" 197 | 198 | #~ msgid "%s results for " 199 | #~ msgstr "%s Ergebnisse für " 200 | -------------------------------------------------------------------------------- /languages/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/de_DE.mo -------------------------------------------------------------------------------- /languages/de_DE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2013-09-18 00:25+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Jürgen Rabe | www.egado.de \n" 7 | "Language-Team: Jürgen Rabe | www.egado.de \n" 8 | "Language: German\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.5.5\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: _e;__\n" 15 | "X-Poedit-Basepath: .\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "Fehler 404 – Die Seite wurde leider nicht gefunden." 22 | 23 | #: ../404.php:11 24 | msgid "Return home?" 25 | msgstr "Zurück zur Startseite?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Archive" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Autor-Archiv für " 34 | 35 | #: ../author.php:14 36 | msgid "About " 37 | msgstr "Über " 38 | 39 | #: ../author.php:41 ../loop.php:22 ../single.php:27 40 | msgid "Published by" 41 | msgstr "Veröffentlicht von" 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "Leave your thoughts" 45 | msgstr "Schreibe einen Kommentar" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "1 Comment" 49 | msgstr "1 Kommentar" 50 | 51 | #: ../author.php:42 ../loop.php:23 ../single.php:28 52 | msgid "% Comments" 53 | msgstr "% Kommentare" 54 | 55 | #: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53 56 | #: ../template-demo.php:31 57 | msgid "Sorry, nothing to display." 58 | msgstr "Nichts gefunden, was den Suchkriterien entspricht." 59 | 60 | #: ../category.php:6 61 | msgid "Categories for" 62 | msgstr "Kategorie-Archiv für" 63 | 64 | #: ../comments.php:3 65 | msgid "Post is password protected. Enter the password to view any comments." 66 | msgstr "" 67 | "Dieser Artikel ist passwortgeschützt. Um die Kommentare sehen zu können muss " 68 | "das Passwort eingegeben werden." 69 | 70 | #: ../comments.php:18 71 | msgid "Comments are closed here." 72 | msgstr "Kommentare sind geschlossen." 73 | 74 | #: ../footer.php:6 75 | msgid "Powered by" 76 | msgstr "Betrieben mit" 77 | 78 | #: ../functions.php:133 79 | msgid "Header Menu" 80 | msgstr "Kopfbereichs-Menü" 81 | 82 | #: ../functions.php:134 83 | msgid "Sidebar Menu" 84 | msgstr "Seitenleisten-Menü" 85 | 86 | #: ../functions.php:135 87 | msgid "Extra Menu" 88 | msgstr "Zusatz-Menü" 89 | 90 | #: ../functions.php:181 91 | msgid "Widget Area 1" 92 | msgstr "Widget-Bereich 1" 93 | 94 | #: ../functions.php:182 ../functions.php:193 95 | msgid "Description for this widget-area..." 96 | msgstr "Beschreibung für diesen Widget-Bereich…" 97 | 98 | #: ../functions.php:192 99 | msgid "Widget Area 2" 100 | msgstr "Widget-Bereich 2" 101 | 102 | #: ../functions.php:258 103 | msgid "View Article" 104 | msgstr "Artikel ansehen" 105 | 106 | #: ../functions.php:319 107 | #, php-format 108 | msgid "%s says:" 109 | msgstr "%s sagt:" 110 | 111 | #: ../functions.php:322 112 | msgid "Your comment is awaiting moderation." 113 | msgstr "Dein Kommentar muss noch moderiert werden – Bitte hab etwas Geduld." 114 | 115 | #: ../functions.php:328 116 | #, php-format 117 | msgid "%1$s at %2$s" 118 | msgstr "%1$s um %2$s" 119 | 120 | #: ../functions.php:328 121 | msgid "(Edit)" 122 | msgstr "(Bearbeiten)" 123 | 124 | #: ../functions.php:411 ../functions.php:412 125 | msgid "HTML5 Blank Custom Post" 126 | msgstr "HTML5 Blank Custom Post-Type" 127 | 128 | #: ../functions.php:413 129 | msgid "Add New" 130 | msgstr "Neuen Artikel erstellen" 131 | 132 | #: ../functions.php:414 133 | msgid "Add New HTML5 Blank Custom Post" 134 | msgstr "Neuen HTML5 Blank Custom Post erstellen" 135 | 136 | #: ../functions.php:415 137 | msgid "Edit" 138 | msgstr "Bearbeiten" 139 | 140 | #: ../functions.php:416 141 | msgid "Edit HTML5 Blank Custom Post" 142 | msgstr "HTML5 Blank Custom Post bearbeiten" 143 | 144 | #: ../functions.php:417 145 | msgid "New HTML5 Blank Custom Post" 146 | msgstr "Neuer HTML5 Blank Custom Post" 147 | 148 | #: ../functions.php:418 ../functions.php:419 149 | msgid "View HTML5 Blank Custom Post" 150 | msgstr "HTML5 Blank Custom Post ansehen" 151 | 152 | #: ../functions.php:420 153 | msgid "Search HTML5 Blank Custom Post" 154 | msgstr "HTML5 Blank Custom Post suchen" 155 | 156 | #: ../functions.php:421 157 | msgid "No HTML5 Blank Custom Posts found" 158 | msgstr "Keine HTML5 Blank Custom Posts gefunden" 159 | 160 | #: ../functions.php:422 161 | msgid "No HTML5 Blank Custom Posts found in Trash" 162 | msgstr "Keine HTML5 Blank Custom Posts im Papierkorb gefunden" 163 | 164 | #: ../index.php:6 165 | msgid "Latest Posts" 166 | msgstr "Letzte Artikel" 167 | 168 | #: ../search.php:6 169 | #, php-format 170 | msgid "%s Search Results for " 171 | msgstr "%s Suchergebnisse für " 172 | 173 | #: ../searchform.php:3 174 | msgid "To search, type and hit enter." 175 | msgstr "Suchbegriff…" 176 | 177 | #: ../searchform.php:4 178 | msgid "Search" 179 | msgstr "Suchen" 180 | 181 | #: ../single.php:33 182 | msgid "Tags: " 183 | msgstr "Stichwörter: " 184 | 185 | #: ../single.php:35 186 | msgid "Categorised in: " 187 | msgstr "Kategorisiert in: " 188 | 189 | #: ../single.php:37 190 | msgid "This post was written by " 191 | msgstr "Dieser Artikel wurde verfasst von " 192 | 193 | #: ../tag.php:6 194 | msgid "Tag Archive: " 195 | msgstr "Stichword-Archiv: " 196 | 197 | #~ msgid "%s results for " 198 | #~ msgstr "%s Ergebnisse für " 199 | -------------------------------------------------------------------------------- /languages/es_CL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/es_CL.mo -------------------------------------------------------------------------------- /languages/es_CL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2012-10-18 00:53+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Fabián Núñez \n" 7 | "Language-Team: Ioan Virag | www.ioanvirag.com \n" 8 | "Language: es_CL\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.6.4\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: _e;__\n" 15 | "X-Poedit-Basepath: .\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | "X-Poedit-SearchPath-1: ..\n" 19 | 20 | #: ../404.php:9 21 | msgid "Page not found" 22 | msgstr "Página no encontrada" 23 | 24 | #: ../404.php:10 25 | msgid "Return home?" 26 | msgstr "¿Regresar al Inicio?" 27 | 28 | #: ../archive.php:6 29 | msgid "Archives" 30 | msgstr "Archivos" 31 | 32 | #: ../author.php:8 33 | msgid "Author Archives for " 34 | msgstr "Archivos de autor de" 35 | 36 | #: ../author.php:41 ../loop.php:22 ../single.php:27 37 | msgid "Published by" 38 | msgstr "Publicado por" 39 | 40 | #: ../author.php:42 ../loop.php:23 ../single.php:28 41 | msgid "Leave your thoughts" 42 | msgstr "Deja tus comentarios" 43 | 44 | #: ../author.php:42 ../loop.php:23 ../single.php:28 45 | msgid "1 Comment" 46 | msgstr "1 Comentario" 47 | 48 | #: ../author.php:42 ../loop.php:23 ../single.php:28 49 | msgid "% Comments" 50 | msgstr "% Comentarios" 51 | 52 | #: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55 53 | #: ../template-demo.php:33 54 | msgid "Sorry, nothing to display." 55 | msgstr "Disculpa, nada para mostrar." 56 | 57 | #: ../category.php:6 58 | msgid "Categories for" 59 | msgstr "Categorías para" 60 | 61 | #: ../comments.php:3 62 | msgid "Post is password protected. Enter the password to view any comments." 63 | msgstr "Entrada protegida. Introduzca la contraseña para ver los comentarios." 64 | 65 | #: ../comments.php:18 66 | msgid "Comments are closed here." 67 | msgstr "Los comentarios están cerrados." 68 | 69 | #: ../footer.php:6 70 | msgid "Powered by" 71 | msgstr "Desarrollado con" 72 | 73 | #: ../functions.php:174 74 | #, php-format 75 | msgid "%s says:" 76 | msgstr "%s dice:" 77 | 78 | #: ../functions.php:177 79 | msgid "Your comment is awaiting moderation." 80 | msgstr "Su comentario espera moderación." 81 | 82 | #: ../functions.php:184 83 | #, php-format 84 | msgid "%1$s at %2$s" 85 | msgstr "%1$s en %2$s" 86 | 87 | #: ../functions.php:184 88 | msgid "(Edit)" 89 | msgstr "(Editar)" 90 | 91 | #: ../functions.php:209 92 | msgid "Header Menu" 93 | msgstr "Menú de la cabecera" 94 | 95 | #: ../functions.php:210 96 | msgid "Sidebar Menu" 97 | msgstr "Menú de la barra lateral" 98 | 99 | #: ../functions.php:211 100 | msgid "Extra Menu" 101 | msgstr "Menú extra" 102 | 103 | #: ../functions.php:257 104 | msgid "Widget Area 1" 105 | msgstr "Zona 1 de widgets" 106 | 107 | #: ../functions.php:258 ../functions.php:269 108 | msgid "Description for this widget-area..." 109 | msgstr "Descripción para esta zona..." 110 | 111 | #: ../functions.php:268 112 | msgid "Widget Area 2" 113 | msgstr "Zona 2 de widgets" 114 | 115 | #: ../functions.php:333 116 | msgid "View Article" 117 | msgstr "Ver artículo" 118 | 119 | #: ../functions.php:438 ../functions.php:439 120 | msgid "HTML5 Blank Custom Post" 121 | msgstr "Entradas personalizadas de HTML5 Blank" 122 | 123 | #: ../functions.php:440 124 | msgid "Add New" 125 | msgstr "Añadir nuevo" 126 | 127 | #: ../functions.php:441 128 | msgid "Add New HTML5 Blank Custom Post" 129 | msgstr "Añadir entrada personalizada de HTML5 Blank" 130 | 131 | #: ../functions.php:442 132 | msgid "Edit" 133 | msgstr "Editar" 134 | 135 | #: ../functions.php:443 136 | msgid "Edit HTML5 Blank Custom Post" 137 | msgstr "Editar entrada personalizada de HTML5 Blank" 138 | 139 | #: ../functions.php:444 140 | msgid "New HTML5 Blank Custom Post" 141 | msgstr "Nueva entrada personalizada de HTML5 Blank" 142 | 143 | #: ../functions.php:445 ../functions.php:446 144 | msgid "View HTML5 Blank Custom Post" 145 | msgstr "Ver entrada personalizada de HTML5 Blank" 146 | 147 | #: ../functions.php:447 148 | msgid "Search HTML5 Blank Custom Post" 149 | msgstr "Buscar entrada personalizada de HTML5 Blank" 150 | 151 | #: ../functions.php:448 152 | msgid "No HTML5 Blank Custom Posts found" 153 | msgstr "No se han encontrado entradas personalizadas de HTML5 Blank" 154 | 155 | #: ../functions.php:449 156 | msgid "No HTML5 Blank Custom Posts found in Trash" 157 | msgstr "" 158 | "No se han encontrado entradas personalizadas de HTML5 Blank en la papelera" 159 | 160 | #: ../index.php:6 161 | msgid "Latest Posts" 162 | msgstr "Últimas entradas" 163 | 164 | #: ../search.php:6 165 | #, php-format 166 | msgid "%s Search Results for " 167 | msgstr "%s resultados resultados para" 168 | 169 | #: ../searchform.php:5 170 | msgid "Search" 171 | msgstr "Buscar" 172 | 173 | #: ../single.php:35 174 | msgid "Tags: " 175 | msgstr "Etiquetas: " 176 | 177 | #: ../single.php:37 178 | msgid "Categorised in: " 179 | msgstr "Categorizado en: " 180 | 181 | #: ../single.php:39 182 | msgid "This post was written by " 183 | msgstr "Esta entrada fue escrita por" 184 | 185 | #: ../tag.php:6 186 | msgid "Tag Archive: " 187 | msgstr "Archivo de etiquetas: " 188 | 189 | #: ../searchform.php:3 190 | msgid "To search, type and hit enter." 191 | msgstr "Para buscar, escribe y presiona Enter" 192 | 193 | #~ msgid "%s results for " 194 | #~ msgstr "%s Ergebnisse für " 195 | 196 | #~ msgid "About" 197 | #~ msgstr "Acerca de" 198 | -------------------------------------------------------------------------------- /languages/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/es_ES.mo -------------------------------------------------------------------------------- /languages/es_ES.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2012-10-18 00:53+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Fabián Núñez \n" 7 | "Language-Team: Ioan Virag | www.ioanvirag.com \n" 8 | "Language: es_ES\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.6.4\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: _e;__\n" 15 | "X-Poedit-Basepath: .\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "Página no encontrada" 22 | 23 | #: ../404.php:10 24 | msgid "Return home?" 25 | msgstr "¿Regresar al Inicio?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Archivos" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Archivos de autor de" 34 | 35 | #: ../author.php:41 ../loop.php:22 ../single.php:27 36 | msgid "Published by" 37 | msgstr "Publicado por" 38 | 39 | #: ../author.php:42 ../loop.php:23 ../single.php:28 40 | msgid "Leave your thoughts" 41 | msgstr "Deja tus comentarios" 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "1 Comment" 45 | msgstr "1 Comentario" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "% Comments" 49 | msgstr "% Comentarios" 50 | 51 | #: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55 52 | #: ../template-demo.php:33 53 | msgid "Sorry, nothing to display." 54 | msgstr "Disculpa, nada para mostrar." 55 | 56 | #: ../category.php:6 57 | msgid "Categories for" 58 | msgstr "Categorías para" 59 | 60 | #: ../comments.php:3 61 | msgid "Post is password protected. Enter the password to view any comments." 62 | msgstr "Entrada protegida. Introduzca la contraseña para ver los comentarios." 63 | 64 | #: ../comments.php:18 65 | msgid "Comments are closed here." 66 | msgstr "Los comentarios están cerrados." 67 | 68 | #: ../footer.php:6 69 | msgid "Powered by" 70 | msgstr "Desarrollado con" 71 | 72 | #: ../functions.php:174 73 | #, php-format 74 | msgid "%s says:" 75 | msgstr "%s dice:" 76 | 77 | #: ../functions.php:177 78 | msgid "Your comment is awaiting moderation." 79 | msgstr "Su comentario espera moderación." 80 | 81 | #: ../functions.php:184 82 | #, php-format 83 | msgid "%1$s at %2$s" 84 | msgstr "%1$s en %2$s" 85 | 86 | #: ../functions.php:184 87 | msgid "(Edit)" 88 | msgstr "(Editar)" 89 | 90 | #: ../functions.php:209 91 | msgid "Header Menu" 92 | msgstr "Menú de la cabecera" 93 | 94 | #: ../functions.php:210 95 | msgid "Sidebar Menu" 96 | msgstr "Menú de la barra lateral" 97 | 98 | #: ../functions.php:211 99 | msgid "Extra Menu" 100 | msgstr "Menú extra" 101 | 102 | #: ../functions.php:257 103 | msgid "Widget Area 1" 104 | msgstr "Zona 1 de widgets" 105 | 106 | #: ../functions.php:258 ../functions.php:269 107 | msgid "Description for this widget-area..." 108 | msgstr "Descripción para esta zona..." 109 | 110 | #: ../functions.php:268 111 | msgid "Widget Area 2" 112 | msgstr "Zona 2 de widgets" 113 | 114 | #: ../functions.php:333 115 | msgid "View Article" 116 | msgstr "Ver artículo" 117 | 118 | #: ../functions.php:438 ../functions.php:439 119 | msgid "HTML5 Blank Custom Post" 120 | msgstr "Entradas personalizadas de HTML5 Blank" 121 | 122 | #: ../functions.php:440 123 | msgid "Add New" 124 | msgstr "Añadir nuevo" 125 | 126 | #: ../functions.php:441 127 | msgid "Add New HTML5 Blank Custom Post" 128 | msgstr "Añadir entrada personalizada de HTML5 Blank" 129 | 130 | #: ../functions.php:442 131 | msgid "Edit" 132 | msgstr "Editar" 133 | 134 | #: ../functions.php:443 135 | msgid "Edit HTML5 Blank Custom Post" 136 | msgstr "Editar entrada personalizada de HTML5 Blank" 137 | 138 | #: ../functions.php:444 139 | msgid "New HTML5 Blank Custom Post" 140 | msgstr "Nueva entrada personalizada de HTML5 Blank" 141 | 142 | #: ../functions.php:445 ../functions.php:446 143 | msgid "View HTML5 Blank Custom Post" 144 | msgstr "Ver entrada personalizada de HTML5 Blank" 145 | 146 | #: ../functions.php:447 147 | msgid "Search HTML5 Blank Custom Post" 148 | msgstr "Buscar entrada personalizada de HTML5 Blank" 149 | 150 | #: ../functions.php:448 151 | msgid "No HTML5 Blank Custom Posts found" 152 | msgstr "No se han encontrado entradas personalizadas de HTML5 Blank" 153 | 154 | #: ../functions.php:449 155 | msgid "No HTML5 Blank Custom Posts found in Trash" 156 | msgstr "" 157 | "No se han encontrado entradas personalizadas de HTML5 Blank en la papelera" 158 | 159 | #: ../index.php:6 160 | msgid "Latest Posts" 161 | msgstr "Últimas entradas" 162 | 163 | #: ../search.php:6 164 | #, php-format 165 | msgid "%s Search Results for " 166 | msgstr "%s resultados resultados para" 167 | 168 | #: ../searchform.php:5 169 | msgid "Search" 170 | msgstr "Buscar" 171 | 172 | #: ../single.php:35 173 | msgid "Tags: " 174 | msgstr "Etiquetas: " 175 | 176 | #: ../single.php:37 177 | msgid "Categorised in: " 178 | msgstr "Categorizado en: " 179 | 180 | #: ../single.php:39 181 | msgid "This post was written by " 182 | msgstr "Esta entrada fue escrita por" 183 | 184 | #: ../tag.php:6 185 | msgid "Tag Archive: " 186 | msgstr "Archivo de etiquetas: " 187 | 188 | #: ../searchform.php:3 189 | msgid "To search, type and hit enter." 190 | msgstr "Para buscar, escribe y presiona Enter" 191 | 192 | #~ msgid "%s results for " 193 | #~ msgstr "%s Ergebnisse für " 194 | -------------------------------------------------------------------------------- /languages/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/fr_FR.mo -------------------------------------------------------------------------------- /languages/fr_FR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2014-01-08 00:08+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Antoine Lorence \n" 7 | "Language-Team: Kevin Plattret \n" 8 | "Language: fr\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.6.3\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: _e;__\n" 15 | "X-Poedit-Basepath: .\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "Page non trouvée" 22 | 23 | #: ../404.php:11 24 | msgid "Return home?" 25 | msgstr "Retour à la page d'accueil ?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Archives" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Archives de l'auteur " 34 | 35 | #: ../author.php:14 36 | msgid "About " 37 | msgstr "À propos" 38 | 39 | #: ../author.php:41 ../loop.php:22 ../single.php:27 40 | msgid "Published by" 41 | msgstr "Publié par" 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "Leave your thoughts" 45 | msgstr "Laissez vos commentaires" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "1 Comment" 49 | msgstr "1 Commentaire" 50 | 51 | #: ../author.php:42 ../loop.php:23 ../single.php:28 52 | msgid "% Comments" 53 | msgstr "% Comentaires" 54 | 55 | #: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53 56 | #: ../template-demo.php:31 57 | msgid "Sorry, nothing to display." 58 | msgstr "Désolé, aucun contenu disponible." 59 | 60 | #: ../category.php:6 61 | msgid "Categories for " 62 | msgstr "Catégories pour " 63 | 64 | #: ../comments.php:3 65 | msgid "Post is password protected. Enter the password to view any comments." 66 | msgstr "" 67 | "Cet article est protégé par un mot de passe. Merci d'entrer le mot de passe " 68 | "pour voir les commentaires." 69 | 70 | #: ../comments.php:18 71 | msgid "Comments are closed here." 72 | msgstr "Les commentaires sont fermés." 73 | 74 | #: ../footer.php:6 75 | msgid "Powered by" 76 | msgstr "Propulsé par" 77 | 78 | #: ../functions.php:133 79 | msgid "Header Menu" 80 | msgstr "Menu d'entête" 81 | 82 | #: ../functions.php:134 83 | msgid "Sidebar Menu" 84 | msgstr "Menu de barre latérale" 85 | 86 | #: ../functions.php:135 87 | msgid "Extra Menu" 88 | msgstr "Menu supplémentaire" 89 | 90 | #: ../functions.php:181 91 | msgid "Widget Area 1" 92 | msgstr "Zone de widget 1" 93 | 94 | #: ../functions.php:182 ../functions.php:193 95 | msgid "Description for this widget-area..." 96 | msgstr "Description pour cette zone à widget..." 97 | 98 | #: ../functions.php:192 99 | msgid "Widget Area 2" 100 | msgstr "Zone de widget 2" 101 | 102 | #: ../functions.php:258 103 | msgid "View Article" 104 | msgstr "Voir l'article" 105 | 106 | #: ../functions.php:319 107 | #, php-format 108 | msgid "%s says:" 109 | msgstr "%s dit:" 110 | 111 | #: ../functions.php:322 112 | msgid "Your comment is awaiting moderation." 113 | msgstr "Votre commentaire est en attente de modération." 114 | 115 | #: ../functions.php:328 116 | #, php-format 117 | msgid "%1$s at %2$s" 118 | msgstr "%1$s à %2$s" 119 | 120 | #: ../functions.php:328 121 | msgid "(Edit)" 122 | msgstr "(Éditer)" 123 | 124 | #: ../functions.php:411 ../functions.php:412 125 | msgid "HTML5 Blank Custom Post" 126 | msgstr "Article personnalisé" 127 | 128 | #: ../functions.php:413 129 | msgid "Add New" 130 | msgstr "Ajouter nouveau" 131 | 132 | #: ../functions.php:414 133 | msgid "Add New HTML5 Blank Custom Post" 134 | msgstr "Ajouter un article personnalisé" 135 | 136 | #: ../functions.php:415 137 | msgid "Edit" 138 | msgstr "Éditer" 139 | 140 | #: ../functions.php:416 141 | msgid "Edit HTML5 Blank Custom Post" 142 | msgstr "Éditer l'article personnalisé" 143 | 144 | #: ../functions.php:417 145 | msgid "New HTML5 Blank Custom Post" 146 | msgstr "Nouvel article personnalisé" 147 | 148 | #: ../functions.php:418 ../functions.php:419 149 | msgid "View HTML5 Blank Custom Post" 150 | msgstr "Voir l'article personnalisé" 151 | 152 | #: ../functions.php:420 153 | msgid "Search HTML5 Blank Custom Post" 154 | msgstr "Rechercher un article personnalisé" 155 | 156 | #: ../functions.php:421 157 | msgid "No HTML5 Blank Custom Posts found" 158 | msgstr "Aucun article personnalisé trouvé" 159 | 160 | #: ../functions.php:422 161 | msgid "No HTML5 Blank Custom Posts found in Trash" 162 | msgstr "Aucun article personnalisé trouvé dans la corbeille" 163 | 164 | #: ../index.php:6 165 | msgid "Latest Posts" 166 | msgstr "Articles récents" 167 | 168 | #: ../search.php:6 169 | #, php-format 170 | msgid "%s Search Results for " 171 | msgstr "%s Résultats de recherche pour " 172 | 173 | #: ../searchform.php:3 174 | msgid "To search, type and hit enter." 175 | msgstr "Rechercher" 176 | 177 | #: ../searchform.php:4 178 | msgid "Search" 179 | msgstr "Rechercher" 180 | 181 | #: ../single.php:33 182 | msgid "Tags: " 183 | msgstr "Tags : " 184 | 185 | #: ../single.php:35 186 | msgid "Categorised in: " 187 | msgstr "Classés dans :" 188 | 189 | #: ../single.php:37 190 | msgid "This post was written by " 191 | msgstr "Cet article a été écrit par " 192 | 193 | #: ../tag.php:6 194 | msgid "Tag Archive: " 195 | msgstr "Archives de tags : " 196 | 197 | #~ msgid "%s results for " 198 | #~ msgstr "%s résultats pour " 199 | -------------------------------------------------------------------------------- /languages/hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/hu_HU.mo -------------------------------------------------------------------------------- /languages/hu_HU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2013-09-18 00:26+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Sallay Arnold \n" 7 | "Language-Team: \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 1.6.5\n" 12 | "X-Poedit-SourceCharset: UTF-8\n" 13 | "X-Poedit-KeywordsList: _e;__\n" 14 | "X-Poedit-Basepath: .\n" 15 | "Language: hu_HU\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "A keresett oldal nem található" 22 | 23 | #: ../404.php:11 24 | msgid "Return home?" 25 | msgstr "Vissza a főoldalra?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Archívum" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Szerkesztői archívum - " 34 | 35 | #: ../author.php:14 36 | msgid "About " 37 | msgstr "Rólunk " 38 | 39 | #: ../author.php:41 ../loop.php:22 ../single.php:27 40 | msgid "Published by" 41 | msgstr "Közzétette " 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "Leave your thoughts" 45 | msgstr "Hozzászólás" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "1 Comment" 49 | msgstr "1 Hozzászólás" 50 | 51 | #: ../author.php:42 ../loop.php:23 ../single.php:28 52 | msgid "% Comments" 53 | msgstr "% Hozzászólás" 54 | 55 | #: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53 56 | #: ../template-demo.php:31 57 | msgid "Sorry, nothing to display." 58 | msgstr "Nincs tartalom." 59 | 60 | #: ../category.php:6 61 | msgid "Categories for" 62 | msgstr "Kategória: " 63 | 64 | #: ../comments.php:3 65 | msgid "Post is password protected. Enter the password to view any comments." 66 | msgstr "" 67 | "A tartalom jelszóval védett. A jelszó megadása után minden hozzászólás " 68 | "látható lesz." 69 | 70 | #: ../comments.php:18 71 | msgid "Comments are closed here." 72 | msgstr "Hozzászólás zárolva." 73 | 74 | #: ../footer.php:6 75 | msgid "Powered by" 76 | msgstr "Motor:" 77 | 78 | #: ../functions.php:133 79 | msgid "Header Menu" 80 | msgstr "Fejléc Menü" 81 | 82 | #: ../functions.php:134 83 | msgid "Sidebar Menu" 84 | msgstr "Oldalsáv Menü" 85 | 86 | #: ../functions.php:135 87 | msgid "Extra Menu" 88 | msgstr "Extra Menü" 89 | 90 | #: ../functions.php:181 91 | msgid "Widget Area 1" 92 | msgstr "Widget rész 1" 93 | 94 | #: ../functions.php:182 ../functions.php:193 95 | msgid "Description for this widget-area..." 96 | msgstr "A widhet rész leírása..." 97 | 98 | #: ../functions.php:192 99 | msgid "Widget Area 2" 100 | msgstr "Widget rész 2" 101 | 102 | #: ../functions.php:258 103 | msgid "View Article" 104 | msgstr "Tartalom Megtekintése" 105 | 106 | #: ../functions.php:319 107 | #, php-format 108 | msgid "%s says:" 109 | msgstr "%s :" 110 | 111 | #: ../functions.php:322 112 | msgid "Your comment is awaiting moderation." 113 | msgstr "A hozzászólás moderálásra vár." 114 | 115 | #: ../functions.php:328 116 | #, php-format 117 | msgid "%1$s at %2$s" 118 | msgstr "%1$s - %2$s" 119 | 120 | #: ../functions.php:328 121 | msgid "(Edit)" 122 | msgstr "(Szerkesztés)" 123 | 124 | #: ../functions.php:411 ../functions.php:412 125 | msgid "HTML5 Blank Custom Post" 126 | msgstr "HTML5 Blank Egyedi Tartalom" 127 | 128 | #: ../functions.php:413 129 | msgid "Add New" 130 | msgstr "Új hozzáadása" 131 | 132 | #: ../functions.php:414 133 | msgid "Add New HTML5 Blank Custom Post" 134 | msgstr "Új egyedi HTML5 Blank tartalom hozzáadása" 135 | 136 | #: ../functions.php:415 137 | msgid "Edit" 138 | msgstr "Szerkesztés" 139 | 140 | #: ../functions.php:416 141 | msgid "Edit HTML5 Blank Custom Post" 142 | msgstr "HTML5 Blank egyedi tartalom szerkesztése" 143 | 144 | #: ../functions.php:417 145 | msgid "New HTML5 Blank Custom Post" 146 | msgstr "Új HTML5 Blank egyedi tartalom" 147 | 148 | #: ../functions.php:418 ../functions.php:419 149 | msgid "View HTML5 Blank Custom Post" 150 | msgstr "HTML5 Blank egyedi tartalom megtekintése" 151 | 152 | #: ../functions.php:420 153 | msgid "Search HTML5 Blank Custom Post" 154 | msgstr "HTML5 Blank egyedi tartalomak keresése" 155 | 156 | #: ../functions.php:421 157 | msgid "No HTML5 Blank Custom Posts found" 158 | msgstr "Nincs HTML5 Blank egyedi tartalom" 159 | 160 | #: ../functions.php:422 161 | msgid "No HTML5 Blank Custom Posts found in Trash" 162 | msgstr "Nincs HTML5 Blank egyedi tartalom a kukában" 163 | 164 | #: ../index.php:6 165 | msgid "Latest Posts" 166 | msgstr "Legfrissebb bejegyzések" 167 | 168 | #: ../search.php:6 169 | #, php-format 170 | msgid "%s Search Results for " 171 | msgstr "%s Találatok " 172 | 173 | #: ../searchform.php:3 174 | msgid "To search, type and hit enter." 175 | msgstr "Keresési feltétel, majd [Enter]." 176 | 177 | #: ../searchform.php:4 178 | msgid "Search" 179 | msgstr "Keresés" 180 | 181 | #: ../single.php:33 182 | msgid "Tags: " 183 | msgstr "Címkék: " 184 | 185 | #: ../single.php:35 186 | msgid "Categorised in: " 187 | msgstr "Kategória: " 188 | 189 | #: ../single.php:37 190 | msgid "This post was written by " 191 | msgstr "Írta: " 192 | 193 | #: ../tag.php:6 194 | msgid "Tag Archive: " 195 | msgstr "Archívim: " 196 | 197 | #~ msgid "%s results for " 198 | #~ msgstr "%s Ergebnisse für " 199 | -------------------------------------------------------------------------------- /languages/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/it_IT.mo -------------------------------------------------------------------------------- /languages/it_IT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2013-08-31 17:10+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Mattia Accornero \n" 7 | "Language-Team: Mattia Accornero \n" 8 | "Language: Italiano\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.5.7\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: _e;__\n" 15 | "X-Poedit-Basepath: .\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "Pagina non trovata" 22 | 23 | #: ../404.php:11 24 | msgid "Return home?" 25 | msgstr "Tornare all'homepage?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Archivi" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Archivio dell'autore " 34 | 35 | #: ../author.php:14 36 | msgid "About" 37 | msgstr "Informazioni" 38 | 39 | #: ../author.php:41 ../loop.php:22 ../single.php:27 40 | msgid "Published by" 41 | msgstr "Pubblicato da" 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "Leave your thoughts" 45 | msgstr "Lascia il tuo commento" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "1 Comment" 49 | msgstr "1 Commento" 50 | 51 | #: ../author.php:42 ../loop.php:23 ../single.php:28 52 | msgid "% Comments" 53 | msgstr "% Commenti" 54 | 55 | #: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53 56 | #: ../template-demo.php:31 57 | msgid "Sorry, nothing to display." 58 | msgstr "Spiacenti, contenuto non disponibile." 59 | 60 | #: ../category.php:6 61 | msgid "Categories for" 62 | msgstr "Categoria per" 63 | 64 | #: ../comments.php:3 65 | msgid "Post is password protected. Enter the password to view any comments." 66 | msgstr "" 67 | "Questo post è protetto da password. Inserisci la password per vedere i " 68 | "commenti." 69 | 70 | #: ../comments.php:18 71 | msgid "Comments are closed here." 72 | msgstr "Non è più possibile commentare." 73 | 74 | #: ../footer.php:6 75 | msgid "Powered by" 76 | msgstr "Prodotto da" 77 | 78 | #: ../functions.php:133 79 | msgid "Header Menu" 80 | msgstr "Menu di pagina" 81 | 82 | #: ../functions.php:134 83 | msgid "Sidebar Menu" 84 | msgstr "Menu della spalla" 85 | 86 | #: ../functions.php:135 87 | msgid "Extra Menu" 88 | msgstr "Menu extra" 89 | 90 | #: ../functions.php:181 91 | msgid "Widget Area 1" 92 | msgstr "Area widget 1" 93 | 94 | #: ../functions.php:182 ../functions.php:193 95 | msgid "Description for this widget-area..." 96 | msgstr "Descrizione per questa area widget..." 97 | 98 | #: ../functions.php:192 99 | msgid "Widget Area 2" 100 | msgstr "Area widget 2" 101 | 102 | #: ../functions.php:258 103 | msgid "View Article" 104 | msgstr "Mostra articolo" 105 | 106 | #: ../functions.php:319 107 | #, php-format 108 | msgid "%s says:" 109 | msgstr "%s ha detto:" 110 | 111 | #: ../functions.php:322 112 | msgid "Your comment is awaiting moderation." 113 | msgstr "Il tuo commento è in attesa di moderazione." 114 | 115 | #: ../functions.php:328 116 | #, php-format 117 | msgid "%1$s at %2$s" 118 | msgstr "%1$s a %2$s" 119 | 120 | #: ../functions.php:328 121 | msgid "(Edit)" 122 | msgstr "(Modifica)" 123 | 124 | #: ../functions.php:411 ../functions.php:412 125 | msgid "HTML5 Blank Custom Post" 126 | msgstr "Articolo personalizzato" 127 | 128 | #: ../functions.php:413 129 | msgid "Add New" 130 | msgstr "Aggiungi nuovo" 131 | 132 | #: ../functions.php:414 133 | msgid "Add New HTML5 Blank Custom Post" 134 | msgstr "Aggiungi un nuovo articolo personalizzato" 135 | 136 | #: ../functions.php:415 137 | msgid "Edit" 138 | msgstr "Modifica" 139 | 140 | #: ../functions.php:416 141 | msgid "Edit HTML5 Blank Custom Post" 142 | msgstr "Modifica articolo personalizzato" 143 | 144 | #: ../functions.php:417 145 | msgid "New HTML5 Blank Custom Post" 146 | msgstr "Nuovo articolo personalizzato" 147 | 148 | #: ../functions.php:418 ../functions.php:419 149 | msgid "View HTML5 Blank Custom Post" 150 | msgstr "Mostra articolo personalizzato" 151 | 152 | #: ../functions.php:420 153 | msgid "Search HTML5 Blank Custom Post" 154 | msgstr "Cerca articolo personalizzato" 155 | 156 | #: ../functions.php:421 157 | msgid "No HTML5 Blank Custom Posts found" 158 | msgstr "Nessun articolo personalizzato trovato" 159 | 160 | #: ../functions.php:422 161 | msgid "No HTML5 Blank Custom Posts found in Trash" 162 | msgstr "Nessun articolo personalizzato trovato nel cestino" 163 | 164 | #: ../index.php:6 165 | msgid "Latest Posts" 166 | msgstr "Ultimi articoli" 167 | 168 | #: ../search.php:6 169 | #, php-format 170 | msgid "%s Search Results for " 171 | msgstr "%s Risultati di ricerca per " 172 | 173 | #: ../searchform.php:4 174 | msgid "Search" 175 | msgstr "Cerca" 176 | 177 | #: ../single.php:33 178 | msgid "Tags: " 179 | msgstr "Tag: " 180 | 181 | #: ../single.php:35 182 | msgid "Categorised in: " 183 | msgstr "Categoria: " 184 | 185 | #: ../single.php:37 186 | msgid "This post was written by " 187 | msgstr "Questo articolo è stato scritto da " 188 | 189 | #: ../tag.php:6 190 | msgid "Tag Archive: " 191 | msgstr "Archivio tag: " 192 | 193 | #~ msgid "%s results for " 194 | #~ msgstr "%s risultati per " 195 | -------------------------------------------------------------------------------- /languages/nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/nl_NL.mo -------------------------------------------------------------------------------- /languages/nl_NL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2013-12-5 10:50+0000\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: \n" 7 | "Language-Team: Frederik De Roover \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 1.5.5\n" 12 | "X-Poedit-SourceCharset: UTF-8\n" 13 | "X-Poedit-KeywordsList: _e;__\n" 14 | "X-Poedit-Basepath: .\n" 15 | "Language: Nederlands\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "Pagina niet gevonden" 22 | 23 | #: ../404.php:10 24 | msgid "Return home?" 25 | msgstr "Terg naar home?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Archiven" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Auteur archieven voor " 34 | 35 | #: ../author.php:41 ../loop.php:22 ../single.php:27 36 | msgid "Published by" 37 | msgstr "Gepubliceerd door" 38 | 39 | #: ../author.php:42 ../loop.php:23 ../single.php:28 40 | msgid "Leave your thoughts" 41 | msgstr "Laat uw gedicht achter" 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "1 Comment" 45 | msgstr "1 Commentaar" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "% Comments" 49 | msgstr "% Commentaren" 50 | 51 | #: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55 52 | #: ../template-demo.php:33 53 | msgid "Sorry, nothing to display." 54 | msgstr "Sorry, niets om weer te geven." 55 | 56 | #: ../category.php:6 57 | msgid "Categories for" 58 | msgstr "Categoriën voor" 59 | 60 | #: ../comments.php:3 61 | msgid "Post is password protected. Enter the password to view any comments." 62 | msgstr "" 63 | "Dit bericht is beveiligd met een wachtwoord. Gelieve uw wachtwoord in te voeren " 64 | 65 | #: ../comments.php:18 66 | msgid "Comments are closed here." 67 | msgstr "Commententaren zijn gesloten." 68 | 69 | #: ../footer.php:6 70 | msgid "Powered by" 71 | msgstr "Aangedreven door" 72 | 73 | #: ../functions.php:174 74 | #, php-format 75 | msgid "%s says:" 76 | msgstr "%s zegt:" 77 | 78 | #: ../functions.php:177 79 | msgid "Your comment is awaiting moderation." 80 | msgstr "Uw reactie is in afwachting van moderatie." 81 | 82 | #: ../functions.php:184 83 | #, php-format 84 | msgid "%1$s at %2$s" 85 | msgstr "%1$s bij %2$s" 86 | 87 | #: ../functions.php:184 88 | msgid "(Edit)" 89 | msgstr "(Aanpassen)" 90 | 91 | #: ../functions.php:209 92 | msgid "Header Menu" 93 | msgstr "Hoofdmenu" 94 | 95 | #: ../functions.php:210 96 | msgid "Sidebar Menu" 97 | msgstr "zijbalk Menu" 98 | 99 | #: ../functions.php:211 100 | msgid "Extra Menu" 101 | msgstr "Extra Menu" 102 | 103 | #: ../functions.php:257 104 | msgid "Widget Area 1" 105 | msgstr "Widget Zone 1" 106 | 107 | #: ../functions.php:258 ../functions.php:269 108 | msgid "Description for this widget-area..." 109 | msgstr "Beschrijving voor deze widget zone..." 110 | 111 | #: ../functions.php:268 112 | msgid "Widget Area 2" 113 | msgstr "Widget Zone 2" 114 | 115 | #: ../functions.php:333 116 | msgid "View Article" 117 | msgstr "Bekijk Artikel" 118 | 119 | #: ../functions.php:438 ../functions.php:439 120 | msgid "HTML5 Blank Custom Post" 121 | msgstr "Persoonlijk Bericht" 122 | 123 | #: ../functions.php:440 124 | msgid "Add New" 125 | msgstr "Voeg een nieuw toe" 126 | 127 | #: ../functions.php:441 128 | msgid "Add New HTML5 Blank Custom Post" 129 | msgstr "Voeg een nieuw persoonlijk bericht toe" 130 | 131 | #: ../functions.php:442 132 | msgid "Edit" 133 | msgstr "Bewerken" 134 | 135 | #: ../functions.php:443 136 | msgid "Edit HTML5 Blank Custom Post" 137 | msgstr "Bewerk het persoonlijk bericht" 138 | 139 | #: ../functions.php:444 140 | msgid "New HTML5 Blank Custom Post" 141 | msgstr "Nieuw persoonlijk bericht" 142 | 143 | #: ../functions.php:445 ../functions.php:446 144 | msgid "View HTML5 Blank Custom Post" 145 | msgstr "Bekijk berichten" 146 | 147 | #: ../functions.php:447 148 | msgid "Search HTML5 Blank Custom Post" 149 | msgstr "Zoeken in berichten" 150 | 151 | #: ../functions.php:448 152 | msgid "No HTML5 Blank Custom Posts found" 153 | msgstr "Geen Bericht gevonden" 154 | 155 | #: ../functions.php:449 156 | msgid "No HTML5 Blank Custom Posts found in Trash" 157 | msgstr "Geen Bericht gevonden in de prullenbak" 158 | 159 | #: ../index.php:6 160 | msgid "Latest Posts" 161 | msgstr "Laatste Berichten" 162 | 163 | #: ../search.php:6 164 | #, php-format 165 | msgid "%s Search Results for " 166 | msgstr "%s Zoekresultaten voor " 167 | 168 | #: ../searchform.php:5 169 | msgid "Search" 170 | msgstr "Zoeken" 171 | 172 | #: ../single.php:35 173 | msgid "Tags: " 174 | msgstr "Tags : " 175 | 176 | #: ../single.php:37 177 | msgid "Categorised in: " 178 | msgstr "Gecategoriseerd in :" 179 | 180 | #: ../single.php:39 181 | msgid "This post was written by " 182 | msgstr "Dit bericht is geschreven door " 183 | 184 | #: ../tag.php:6 185 | msgid "Tag Archive: " 186 | msgstr "Tag Archieven : " 187 | 188 | #~ msgid "%s results for " 189 | #~ msgstr "%s resultaten voor " 190 | -------------------------------------------------------------------------------- /languages/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/pt_BR.mo -------------------------------------------------------------------------------- /languages/pt_BR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2012-10-18 00:53+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: wesllei henrique \n" 7 | "Language-Team: Jürgen Rabe | www.egado.de \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 1.5.5\n" 12 | "X-Poedit-SourceCharset: UTF-8\n" 13 | "X-Poedit-KeywordsList: _e;__\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Poedit-SearchPath-0: .\n" 16 | "X-Poedit-SearchPath-1: ..\n" 17 | 18 | #: ../404.php:9 19 | msgid "Page not found" 20 | msgstr "Página não encontrada" 21 | 22 | #: ../404.php:10 23 | msgid "Return home?" 24 | msgstr "Voltar para o início?" 25 | 26 | #: ../archive.php:6 27 | msgid "Archives" 28 | msgstr "Arquivos" 29 | 30 | #: ../author.php:8 31 | msgid "Author Archives for " 32 | msgstr "Arquivos de autor para" 33 | 34 | #: ../author.php:41 ../loop.php:22 ../single.php:27 35 | msgid "Published by" 36 | msgstr "Publicado por" 37 | 38 | #: ../author.php:42 ../loop.php:23 ../single.php:28 39 | msgid "Leave your thoughts" 40 | msgstr "Deixe um comentário" 41 | 42 | #: ../author.php:42 ../loop.php:23 ../single.php:28 43 | msgid "1 Comment" 44 | msgstr "1 Comentário" 45 | 46 | #: ../author.php:42 ../loop.php:23 ../single.php:28 47 | msgid "% Comments" 48 | msgstr "% Comentários" 49 | 50 | #: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55 51 | #: ../template-demo.php:33 52 | msgid "Sorry, nothing to display." 53 | msgstr "Não encontraram nada que corresponda aos critérios de pesquisa." 54 | 55 | #: ../category.php:6 56 | msgid "Categories for" 57 | msgstr "Arquivo para a categoria" 58 | 59 | #: ../comments.php:3 60 | msgid "Post is password protected. Enter the password to view any comments." 61 | msgstr "" 62 | "Este post é protegido por senha. Para ver os comentários, a senha deve ser " 63 | "digitada." 64 | 65 | #: ../comments.php:18 66 | msgid "Comments are closed here." 67 | msgstr "Comentários estão fechados." 68 | 69 | #: ../footer.php:6 70 | msgid "Powered by" 71 | msgstr "Desenvolvido por" 72 | 73 | #: ../functions.php:174 74 | #, php-format 75 | msgid "%s says:" 76 | msgstr "%s sagt:" 77 | 78 | #: ../functions.php:177 79 | msgid "Your comment is awaiting moderation." 80 | msgstr "Seu comentário está esperando por moderação." 81 | 82 | #: ../functions.php:184 83 | #, php-format 84 | msgid "%1$s at %2$s" 85 | msgstr "%1$s em %2$s" 86 | 87 | #: ../functions.php:184 88 | msgid "(Edit)" 89 | msgstr "(Editar)" 90 | 91 | #: ../functions.php:209 92 | msgid "Header Menu" 93 | msgstr "Menu do cabeçalho" 94 | 95 | #: ../functions.php:210 96 | msgid "Sidebar Menu" 97 | msgstr "Menu lateral" 98 | 99 | #: ../functions.php:211 100 | msgid "Extra Menu" 101 | msgstr "Menu extra" 102 | 103 | #: ../functions.php:257 104 | msgid "Widget Area 1" 105 | msgstr "Área do Widget 1" 106 | 107 | #: ../functions.php:258 ../functions.php:269 108 | msgid "Description for this widget-area..." 109 | msgstr "Descrição para esta área de widgets ..." 110 | 111 | #: ../functions.php:268 112 | msgid "Widget Area 2" 113 | msgstr "Área do Widget 2" 114 | 115 | #: ../functions.php:333 116 | msgid "View Article" 117 | msgstr "Ver artigo" 118 | 119 | #: ../functions.php:438 ../functions.php:439 120 | msgid "HTML5 Blank Custom Post" 121 | msgstr "HTML5 Blank Custom Post" 122 | 123 | #: ../functions.php:440 124 | msgid "Add New" 125 | msgstr "Adicionar novo" 126 | 127 | #: ../functions.php:441 128 | msgid "Add New HTML5 Blank Custom Post" 129 | msgstr "Adicionar novo HTML5 Blank Custom Post" 130 | 131 | #: ../functions.php:442 132 | msgid "Edit" 133 | msgstr "Editar" 134 | 135 | #: ../functions.php:443 136 | msgid "Edit HTML5 Blank Custom Post" 137 | msgstr "Editar HTML5 Blank Custom Post" 138 | 139 | #: ../functions.php:444 140 | msgid "New HTML5 Blank Custom Post" 141 | msgstr "Novo HTML5 Blank Custom Post" 142 | 143 | #: ../functions.php:445 ../functions.php:446 144 | msgid "View HTML5 Blank Custom Post" 145 | msgstr "Ver HTML5 Blank Custom Post" 146 | 147 | #: ../functions.php:447 148 | msgid "Search HTML5 Blank Custom Post" 149 | msgstr "Pesquisar HTML5 Blank Custom Post" 150 | 151 | #: ../functions.php:448 152 | msgid "No HTML5 Blank Custom Posts found" 153 | msgstr "Nenhum HTML5 Blank Custom Post encontrado" 154 | 155 | #: ../functions.php:449 156 | msgid "No HTML5 Blank Custom Posts found in Trash" 157 | msgstr "Nenhum HTML5 Blank Custom Post na lixeira" 158 | 159 | #: ../index.php:6 160 | msgid "Latest Posts" 161 | msgstr "Últimos Posts" 162 | 163 | #: ../search.php:6 164 | #, php-format 165 | msgid "%s Search Results for " 166 | msgstr "%s resultados ao pesquisar" 167 | 168 | #: ../searchform.php:5 169 | msgid "Search" 170 | msgstr "Pesquisar" 171 | 172 | #: ../single.php:35 173 | msgid "Tags: " 174 | msgstr "Tag: " 175 | 176 | #: ../single.php:37 177 | msgid "Categorised in: " 178 | msgstr "Categorizados em: " 179 | 180 | #: ../single.php:39 181 | msgid "This post was written by " 182 | msgstr "Este artigo foi escrito por" 183 | 184 | #: ../tag.php:6 185 | msgid "Tag Archive: " 186 | msgstr "Arquivos da tag: " 187 | 188 | #~ msgid "%s results for " 189 | #~ msgstr "%s Ergebnisse für " 190 | -------------------------------------------------------------------------------- /languages/ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/languages/ro_RO.mo -------------------------------------------------------------------------------- /languages/ro_RO.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: HTML5 Blank WordPress Theme\n" 4 | "POT-Creation-Date: 2012-10-18 00:53+0100\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Ioan Virag \n" 7 | "Language-Team: Ioan Virag | www.ioanvirag.com \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 1.5.4\n" 12 | "X-Poedit-SourceCharset: UTF-8\n" 13 | "X-Poedit-KeywordsList: _e;__\n" 14 | "X-Poedit-Basepath: .\n" 15 | "Language: Română\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | "X-Poedit-SearchPath-1: ..\n" 18 | 19 | #: ../404.php:9 20 | msgid "Page not found" 21 | msgstr "Pagina nu a fost găsită" 22 | 23 | #: ../404.php:10 24 | msgid "Return home?" 25 | msgstr "Vă întoarceţi la prima pagină?" 26 | 27 | #: ../archive.php:6 28 | msgid "Archives" 29 | msgstr "Arhive" 30 | 31 | #: ../author.php:8 32 | msgid "Author Archives for " 33 | msgstr "Autor-Arhive pentru " 34 | 35 | #: ../author.php:41 ../loop.php:22 ../single.php:27 36 | msgid "Published by" 37 | msgstr "Publicat de" 38 | 39 | #: ../author.php:42 ../loop.php:23 ../single.php:28 40 | msgid "Leave your thoughts" 41 | msgstr "Lasă un comentariu" 42 | 43 | #: ../author.php:42 ../loop.php:23 ../single.php:28 44 | msgid "1 Comment" 45 | msgstr "1 Comentariu" 46 | 47 | #: ../author.php:42 ../loop.php:23 ../single.php:28 48 | msgid "% Comments" 49 | msgstr "% Comentarii" 50 | 51 | #: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55 52 | #: ../template-demo.php:33 53 | msgid "Sorry, nothing to display." 54 | msgstr "Ne pare rău, nu există nici un rezultat.." 55 | 56 | #: ../category.php:6 57 | msgid "Categories for" 58 | msgstr "Categorii pentru" 59 | 60 | #: ../comments.php:3 61 | msgid "Post is password protected. Enter the password to view any comments." 62 | msgstr "" 63 | "Postarea necesită o parolă. Introduceţi parola pentru a vedea comentariile." 64 | 65 | #: ../comments.php:18 66 | msgid "Comments are closed here." 67 | msgstr "Comentariile sunt închise." 68 | 69 | #: ../footer.php:6 70 | msgid "Powered by" 71 | msgstr "Pus la dispoziţie de " 72 | 73 | #: ../functions.php:174 74 | #, php-format 75 | msgid "%s says:" 76 | msgstr "%s spune:" 77 | 78 | #: ../functions.php:177 79 | msgid "Your comment is awaiting moderation." 80 | msgstr "Comentariul dumneavoastră a fost trimis pentru a fi moderat." 81 | 82 | #: ../functions.php:184 83 | #, php-format 84 | msgid "%1$s at %2$s" 85 | msgstr "%1$s la %2$s" 86 | 87 | #: ../functions.php:184 88 | msgid "(Edit)" 89 | msgstr "(Editare)" 90 | 91 | #: ../functions.php:209 92 | msgid "Header Menu" 93 | msgstr "Meniu Header" 94 | 95 | #: ../functions.php:210 96 | msgid "Sidebar Menu" 97 | msgstr "Meniu Sidebar" 98 | 99 | #: ../functions.php:211 100 | msgid "Extra Menu" 101 | msgstr "Meniu Extra" 102 | 103 | #: ../functions.php:257 104 | msgid "Widget Area 1" 105 | msgstr "Zonă Widget 1" 106 | 107 | #: ../functions.php:258 ../functions.php:269 108 | msgid "Description for this widget-area..." 109 | msgstr "Descriere pentru această zonă-widget..." 110 | 111 | #: ../functions.php:268 112 | msgid "Widget Area 2" 113 | msgstr "Zonă Widget 2" 114 | 115 | #: ../functions.php:333 116 | msgid "View Article" 117 | msgstr "Vezi Articol" 118 | 119 | #: ../functions.php:438 ../functions.php:439 120 | msgid "HTML5 Blank Custom Post" 121 | msgstr "Tip de postare customizată HTML5 Blank" 122 | 123 | #: ../functions.php:440 124 | msgid "Add New" 125 | msgstr "Adaugă Nou" 126 | 127 | #: ../functions.php:441 128 | msgid "Add New HTML5 Blank Custom Post" 129 | msgstr "Adaugă un nou tip de postare customizată HTML5 Blank" 130 | 131 | #: ../functions.php:442 132 | msgid "Edit" 133 | msgstr "Editare" 134 | 135 | #: ../functions.php:443 136 | msgid "Edit HTML5 Blank Custom Post" 137 | msgstr "Editare postare customizată de tip HTML5 Blank" 138 | 139 | #: ../functions.php:444 140 | msgid "New HTML5 Blank Custom Post" 141 | msgstr "Nouă postare customizată de tip HTML5 Blank" 142 | 143 | #: ../functions.php:445 ../functions.php:446 144 | msgid "View HTML5 Blank Custom Post" 145 | msgstr "Vezi postare customizată de tip HTML5 Blank" 146 | 147 | #: ../functions.php:447 148 | msgid "Search HTML5 Blank Custom Post" 149 | msgstr "Caută postare customizată de tip HTML5 Blank" 150 | 151 | #: ../functions.php:448 152 | msgid "No HTML5 Blank Custom Posts found" 153 | msgstr "Nu s-a găsit nici o postare customizată de tip HTML5 Blank" 154 | 155 | #: ../functions.php:449 156 | msgid "No HTML5 Blank Custom Posts found in Trash" 157 | msgstr "" 158 | "Nu s-a găsit nici o postare customizată de tip HTML5 Blank în coşul de gunoi" 159 | 160 | #: ../index.php:6 161 | msgid "Latest Posts" 162 | msgstr "Ultima postare" 163 | 164 | #: ../search.php:6 165 | #, php-format 166 | msgid "%s Search Results for " 167 | msgstr "%s Rezultatele căutării pentru" 168 | 169 | #: ../searchform.php:5 170 | msgid "Search" 171 | msgstr "Caută" 172 | 173 | #: ../single.php:35 174 | msgid "Tags: " 175 | msgstr "Etichete: " 176 | 177 | #: ../single.php:37 178 | msgid "Categorised in: " 179 | msgstr "Categorisit în: " 180 | 181 | #: ../single.php:39 182 | msgid "This post was written by " 183 | msgstr "Acest articol a fost scris de " 184 | 185 | #: ../tag.php:6 186 | msgid "Tag Archive: " 187 | msgstr "Arhivă-Etichete: " 188 | 189 | #~ msgid "%s results for " 190 | #~ msgstr "%s Ergebnisse für " 191 | -------------------------------------------------------------------------------- /loop.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    > 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |

    16 | 17 |

    18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
    31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
    39 |

    40 |
    41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/scripts.js": "/js/scripts.js", 3 | "/style.css": "/style.css" 4 | } 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "html5blankwptail", 3 | "version": "1.0.0", 4 | "description": "Tailwind Starter for Wordpress Based on html5blank for Wordpress", 5 | "scripts": { 6 | "development": "mix", 7 | "watch": "mix watch", 8 | "watch-poll": "mix watch -- --watch-options-poll=1000", 9 | "hot": "mix watch --hot", 10 | "production": "mix --production" 11 | }, 12 | "author": "Ciaran", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "cross-env": "^7.0.2", 16 | "laravel-mix": "^6.0.0-beta.17", 17 | "vue-template-compiler": "^2.6.12" 18 | }, 19 | "dependencies": { 20 | "autoprefixer": "^9.8.6", 21 | "postcss": "^8.1", 22 | "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |

    8 | 9 | 10 | 11 | 12 |
    > 13 | 14 | 15 | 16 | 17 | 18 |
    19 | 20 | 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 | -------------------------------------------------------------------------------- /pagination.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | 6 | } 7 | 8 | } 9 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightspore/wordpress-tailwind/85b29aa79ff13b64c09306d7131808ae3d769817/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |

    found_posts ); echo get_search_query(); ?>

    8 | 9 | 10 | 11 | 12 | 13 |
    14 | 15 |
    16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 | 8 | 9 | 10 |
    > 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

    22 | 23 |

    24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | '); // Separated by commas with a line break at the end ?> 35 | 36 |

    37 | 38 |

    39 | 40 | 41 | 42 | 43 | 44 |
    45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
    53 | 54 |

    55 | 56 |
    57 | 58 | 59 | 60 | 61 |
    62 | 63 |
    64 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /tag.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |

    8 | 9 | 10 | 11 | 12 | 13 |
    14 | 15 |
    16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: [ 3 | './**/*.{php|js|html', 4 | ], 5 | theme: { 6 | extend: {}, 7 | }, 8 | variants: {}, 9 | plugins: [], 10 | } 11 | -------------------------------------------------------------------------------- /template-demo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |

    8 | 9 | 10 | 11 | 12 |
    > 13 | 14 | 15 | 16 | 17 | 18 |
    19 | 20 | 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 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | let mix = require('laravel-mix'); 2 | 3 | mix.js('assets/main.js', './js/scripts.js') 4 | .postCss('assets/style.css', './', [ 5 | require('tailwindcss'), 6 | ]) --------------------------------------------------------------------------------