initial commit

This commit is contained in:
2019-06-09 16:44:48 +02:00
commit 3f2c379529
122 changed files with 57403 additions and 0 deletions

1
.gitignore vendored Executable file
View File

@@ -0,0 +1 @@
.DS_Store

24
404.php Executable file
View File

@@ -0,0 +1,24 @@
<?php get_header(); ?>
<main role="main">
<!-- section -->
<section>
<!-- article -->
<article id="post-404">
<h1><?php _e( 'Page not found', 'iotheme' ); ?></h1>
<h2>
<a href="<?php echo home_url(); ?>"><?php _e( 'Return home?', 'iotheme' ); ?></a>
</h2>
</article>
<!-- /article -->
</section>
<!-- /section -->
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

13
LICENSE.md Executable file
View File

@@ -0,0 +1,13 @@
# [IO Theme](http://iotheme.com) License
## MIT License
Copyright &copy; 2013 IO Theme // @iotheme
Built by Todd Motto // @toddmotto
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:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
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.

19
archive.php Executable file
View File

@@ -0,0 +1,19 @@
<?php get_header(); ?>
<main role="main">
<!-- section -->
<section>
<h1><?php _e( 'Archives', 'iotheme' ); ?></h1>
<?php get_template_part('loop'); ?>
<?php get_template_part('pagination'); ?>
</section>
<!-- /section -->
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

77
author.php Executable file
View File

@@ -0,0 +1,77 @@
<?php get_header(); ?>
<main role="main">
<!-- section -->
<section>
<?php if (have_posts()): the_post(); ?>
<h1><?php _e( 'Author Archives for ', 'iotheme' ); echo get_the_author(); ?></h1>
<?php if ( get_the_author_meta('description')) : ?>
<?php echo get_avatar(get_the_author_meta('user_email')); ?>
<h2><?php _e( 'About ', 'iotheme' ); echo get_the_author() ; ?></h2>
<?php echo wpautop( get_the_author_meta('description') ); ?>
<?php endif; ?>
<?php rewind_posts(); while (have_posts()) : the_post(); ?>
<!-- article -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- post thumbnail -->
<?php if ( has_post_thumbnail()) : // Check if Thumbnail exists ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail(array(120,120)); // Declare pixel size you need inside the array ?>
</a>
<?php endif; ?>
<!-- /post thumbnail -->
<!-- post title -->
<h2>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
<!-- /Post title -->
<!-- post details -->
<span class="date"><?php the_time('F j, Y'); ?> <?php the_time('g:i a'); ?></span>
<span class="author"><?php _e( 'Published by', 'iotheme' ); ?> <?php the_author_posts_link(); ?></span>
<span class="comments"><?php comments_popup_link( __( 'Leave your thoughts', 'iotheme' ), __( '1 Comment', 'iotheme' ), __( '% Comments', 'iotheme' )); ?></span>
<!-- /post details -->
<?php html5wp_excerpt('html5wp_index'); // Build your custom callback length in functions.php ?>
<br class="clear">
<?php edit_post_link(); ?>
</article>
<!-- /article -->
<?php endwhile; ?>
<?php else: ?>
<!-- article -->
<article>
<h2><?php _e( 'Sorry, nothing to display.', 'iotheme' ); ?></h2>
</article>
<!-- /article -->
<?php endif; ?>
<?php get_template_part('pagination'); ?>
</section>
<!-- /section -->
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

84
category-press.php Executable file
View File

@@ -0,0 +1,84 @@
<?php get_header(); ?>
<main role="main">
<!-- section -->
<section>
<?php
if (have_posts()):
$args = array(
'category_name' => 'press',
'meta_key' => 'project-date',
'orderby' => 'meta_value_num',
'order' => 'DESC',
// 'meta_value' => date( "Y" ), // change to how "event date" is stored
'meta_compare' => '>'
);
query_posts($args);
while (have_posts()) :
the_post();
//if (have_posts()): while (have_posts()) : the_post();
$key_project_date = get_post_meta(get_the_ID(), 'project-date', true);
?>
<!-- article -->
<article id="post-<?php the_ID(); ?>" <?php post_class( 'date-'.$key_project_date); ?>>
<div class="project-tags">
<?php the_tags( '', '', '' ); ?>
</div>
<div class="project-date">
<?php
$key_project_date = get_post_meta(get_the_ID(), 'project-date', true);
if ( ! empty( $key_project_date ) ) {
echo $key_project_date;
}
?>
</div>
<div class="project-content">
<?php
the_content();
the_post_thumbnail('projects-thumb');
?>
</div>
</article>
<!-- /article -->
<?php endwhile; ?>
<?php else: ?>
<!-- article -->
<article>
<h2>
<?php _e( 'Sorry, nothing to display.', 'iotheme' ); ?>
</h2>
</article>
<!-- /article -->
<?php endif; ?>
</section>
<!-- /section -->
</main>
<?php get_footer(); ?>

92
category.php Executable file
View File

@@ -0,0 +1,92 @@
<?php get_header(); ?>
<main role="main">
<!-- section -->
<div class="tag-list">
<span class="tag-filter">
<a>FILTER</a>
<span class="tag-dummy"></span>
<object data="<?php echo get_template_directory_uri(); ?>/img/arrow.svg" type="image/svg+xml">
<img src="<?php echo get_template_directory_uri(); ?>/img/arrow.png" />
</object>
</span>
<div class="tag-wrapper">
<?php
$tagargs =array(
'exclude' => array(
get_term_by('slug', 'award', 'post_tag')->term_id,
get_term_by('slug', 'publication', 'post_tag')->term_id,
),
);
$tags = get_tags($tagargs);
$html = '<ul class="post_tags">';
foreach ( $tags as $tag ) {
$tag_link = get_tag_link( $tag->term_id );
$html .= "<li><a href='{$tag_link}' title='{$tag->name} Tag' class='{$tag->slug}'>";
$html .= "{$tag->name}</a></li>";
}
$html .= '</ul>';
echo $html;
?>
</div>
</div>
<section>
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
<!-- article -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- post thumbnail -->
<?php if ( has_post_thumbnail()) : // Check if thumbnail exists ?>
<div class="thumbnail-wrapper">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_post_thumbnail('projects-thumb'); ?>
</a>
</div>
<?php endif; ?>
<!-- /post thumbnail -->
<!-- post title -->
<h2 class="project-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_title(); ?></a>
</h2>
<!-- /post title -->
</article>
<!-- /article -->
<?php endwhile; ?>
<?php else: ?>
<!-- article -->
<article>
<h2>
<?php _e( 'Sorry, nothing to display.', 'iotheme' ); ?>
</h2>
</article>
<!-- /article -->
<?php endif; ?>
</section>
<!-- /section -->
</main>
<?php get_footer(); ?>

24
comments.php Executable file
View File

@@ -0,0 +1,24 @@
<div class="comments">
<?php if (post_password_required()) : ?>
<p><?php _e( 'Post is password protected. Enter the password to view any comments.', 'iotheme' ); ?></p>
</div>
<?php return; endif; ?>
<?php if (have_comments()) : ?>
<h2><?php comments_number(); ?></h2>
<ul>
<?php wp_list_comments('type=comment&callback=iothemecomments'); // Custom callback in functions.php ?>
</ul>
<?php elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
<p><?php _e( 'Comments are closed here.', 'iotheme' ); ?></p>
<?php endif; ?>
<?php comment_form(); ?>
</div>

BIN
fonts/cormorantinfant-medium.eot Executable file

Binary file not shown.

8285
fonts/cormorantinfant-medium.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
fonts/cormorantinfant-medium.ttf Executable file

Binary file not shown.

BIN
fonts/cormorantinfant-medium.woff Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 946 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
fonts/cormorantinfant-regular.eot Executable file

Binary file not shown.

8271
fonts/cormorantinfant-regular.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
fonts/cormorantinfant-regular.ttf Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
fonts/nbpro-bold.eot Executable file

Binary file not shown.

4456
fonts/nbpro-bold.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 298 KiB

BIN
fonts/nbpro-bold.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-bold.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-bold.woff2 Executable file

Binary file not shown.

BIN
fonts/nbpro-bolditalic.eot Executable file

Binary file not shown.

4544
fonts/nbpro-bolditalic.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 306 KiB

BIN
fonts/nbpro-bolditalic.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-bolditalic.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-bolditalic.woff2 Executable file

Binary file not shown.

BIN
fonts/nbpro-italic.eot Executable file

Binary file not shown.

4468
fonts/nbpro-italic.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 302 KiB

BIN
fonts/nbpro-italic.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-italic.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-italic.woff2 Executable file

Binary file not shown.

BIN
fonts/nbpro-light.eot Executable file

Binary file not shown.

4453
fonts/nbpro-light.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 298 KiB

BIN
fonts/nbpro-light.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-light.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-light.woff2 Executable file

Binary file not shown.

BIN
fonts/nbpro-lightita.eot Executable file

Binary file not shown.

4481
fonts/nbpro-lightita.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 305 KiB

BIN
fonts/nbpro-lightita.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-lightita.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-lightita.woff2 Executable file

Binary file not shown.

BIN
fonts/nbpro-monospaced.eot Executable file

Binary file not shown.

1206
fonts/nbpro-monospaced.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 157 KiB

BIN
fonts/nbpro-monospaced.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-monospaced.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-monospaced.woff2 Executable file

Binary file not shown.

BIN
fonts/nbpro-regular.eot Executable file

Binary file not shown.

4432
fonts/nbpro-regular.svg Executable file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 295 KiB

BIN
fonts/nbpro-regular.ttf Executable file

Binary file not shown.

BIN
fonts/nbpro-regular.woff Executable file

Binary file not shown.

BIN
fonts/nbpro-regular.woff2 Executable file

Binary file not shown.

61
footer.php Executable file
View File

@@ -0,0 +1,61 @@
<!-- footer -->
<footer class="footer" role="contentinfo">
<div id="footertop">
<a href="<?php echo home_url(); ?>">
<object data="<?php echo get_template_directory_uri(); ?>/img/IO-logo-full-white.svg" type="image/svg+xml">
<img src="<?php echo get_template_directory_uri(); ?>/img/IO-logo-full-white-100.png" />
</object>
</a>
<!-- <a href="<?php echo home_url(); ?>">
<?php echo get_bloginfo( 'description' ); ?>
</a> -->
</div>
<div id="footerbottom">
<div id="info">
<?php
$footerpage = get_page_by_path('footer', '', 'page');
echo get_post_field('post_content', $footerpage->ID);
?>
</div>
<nav class="footer-nav" role="navigation">
<p class="social-title">SOCIAL</p>
<?php wp_nav_menu( array( 'theme_location' => 'footer-social-menu' ) ); ?>
</nav>
</div>
<div class="footer-copyright-wrapper">
<div class="copyright">
&#169; Line And Round
</div>
<div class="created-by">
<p>Design: János Hunor Vári</p>
<p>Code: Peter Gyetvai</p>
</div>
</div>
</footer>
<!-- /footer -->
</div>
<!-- /wrapper -->
<?php wp_footer(); ?>
<!-- analytics -->
<script>
(function (f, i, r, e, s, h, l) {
i['GoogleAnalyticsObject'] = s; f[s] = f[s] || function () {
(f[s].q = f[s].q || []).push(arguments)
}, f[s].l = 1 * new Date(); h = i.createElement(r),
l = i.getElementsByTagName(r)[0]; h.async = 1; h.src = e; l.parentNode.insertBefore(h, l)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-XXXXXXXX-XX', 'yourdomain.com');
ga('send', 'pageview');
</script>
</body>
</html>

518
functions.php Executable file
View File

@@ -0,0 +1,518 @@
<?php
/*
* Author: Todd Motto | @toddmotto
* URL: iotheme.com | @iotheme
* Custom functions, support, custom post types and more.
*/
/*------------------------------------*\
External Modules/Files
\*------------------------------------*/
// Load any external files you have here
/*------------------------------------*\
Theme Support
\*------------------------------------*/
if (!isset($content_width))
{
$content_width = 1920;
}
if (function_exists('add_theme_support'))
{
// Add Menu Support
add_theme_support('menus');
// Add Thumbnail Theme Support
add_theme_support('post-thumbnails');
add_image_size('large', 700, '', true); // Large Thumbnail
// add_image_size('medium', 250, '', true); // Medium Thumbnail
// add_image_size('small', 120, '', true); // Small Thumbnail
add_image_size('team-small', 1080, 972, true); // Our team
add_image_size('home-thumb', 1920, 1920, false); // Custom Thumbnail Size call using the_post_thumbnail('custom-size');
add_image_size('projects-thumb', 768, 480, true); // Our team
// Add Support for Custom Backgrounds - Uncomment below if you're going to use
/*add_theme_support('custom-background', array(
'default-color' => 'FFF',
'default-image' => get_template_directory_uri() . '/img/bg.jpg'
));*/
// Add Support for Custom Header - Uncomment below if you're going to use
/*add_theme_support('custom-header', array(
'default-image' => get_template_directory_uri() . '/img/headers/default.jpg',
'header-text' => false,
'default-text-color' => '000',
'width' => 1000,
'height' => 198,
'random-default' => false,
'wp-head-callback' => $wphead_cb,
'admin-head-callback' => $adminhead_cb,
'admin-preview-callback' => $adminpreview_cb
));*/
// Enables post and comment RSS feed links to head
add_theme_support('automatic-feed-links');
// Localisation Support
load_theme_textdomain('iotheme', get_template_directory() . '/languages');
}
add_filter( 'image_size_names_choose', 'iotheme_add_custom_sizes' );
function iotheme_add_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
'team-small' => __( 'Team' ),
) );
}
/*------------------------------------*\
Functions
\*------------------------------------*/
// IO Theme navigation
function iotheme_nav()
{
wp_nav_menu(
array(
'theme_location' => 'header-menu',
'menu' => '',
'container' => 'div',
'container_class' => 'menu-{menu slug}-container',
'container_id' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul>%3$s</ul>',
'depth' => 0,
'walker' => ''
)
);
}
// Load IO Theme scripts (header.php)
function iotheme_header_scripts()
{
if ($GLOBALS['pagenow'] != 'wp-login.php' && !is_admin()) {
wp_register_script('conditionizr', get_template_directory_uri() . '/js/lib/conditionizr-4.3.0.min.js', array(), '4.3.0'); // Conditionizr
wp_enqueue_script('conditionizr'); // Enqueue it!
wp_register_script('modernizr', get_template_directory_uri() . '/js/lib/modernizr-2.7.1.min.js', array(), '2.7.1'); // Modernizr
wp_enqueue_script('modernizr'); // Enqueue it!
//jarallax for or team s
// wp_register_script('jarallax', get_template_directory_uri() . '/js/lib/jarallax.min.js', array(), '1.10.7'); // jarallax
// wp_enqueue_script('jarallax'); // Enqueue it!
// wp_register_script('jarallax-element', get_template_directory_uri() . '/js/lib/jarallax-element.min.js', array(), '1.0.0'); // jarallax
// wp_enqueue_script('jarallax-element'); // Enqueue it!
//lory: homescreen carousel
// wp_register_script('lory', get_template_directory_uri() . '/js/lib/jquery.lory.min.js', array('jquery'), '1.0.0'); // Lory infinite carousel
// wp_enqueue_script('lory'); // Enqueue it!
wp_register_script('iothemescripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'), '1.0.0'); // Custom scripts
wp_enqueue_script('iothemescripts'); // Enqueue it!
$translation_array = array( 'templateUrl' => get_template_directory_uri() );
//after wp_enqueue_script
wp_localize_script( 'iothemescripts', 'object_name', $translation_array );
}
}
// Load IO Theme conditional scripts
function iotheme_conditional_scripts()
{
if (is_page('pagenamehere')) {
wp_register_script('scriptname', get_template_directory_uri() . '/js/scriptname.js', array('jquery'), '1.0.0'); // Conditional script(s)
wp_enqueue_script('scriptname'); // Enqueue it!
}
}
// Load IO Theme styles
function iotheme_styles()
{
wp_register_style('normalize', get_template_directory_uri() . '/normalize.css', array(), '1.0', 'all');
wp_enqueue_style('normalize'); // Enqueue it!
wp_register_style('iotheme', get_template_directory_uri() . '/style.css', array(), '1.0', 'all');
wp_enqueue_style('iotheme'); // Enqueue it!
}
// Register IO Theme Navigation
function register_html5_menu()
{
register_nav_menus(array( // Using array to specify more menus if needed
'header-menu' => __('Header Menu', 'iotheme'), // Main Navigation
'sidebar-menu' => __('Sidebar Menu', 'iotheme'), // Sidebar Navigation
'lang-menu' => __('Language Menu', 'iotheme'), // Extra Navigation if needed (duplicate as many as you need!)
'social-menu' => __('Social Menu', 'iotheme'), // Extra Navigation if needed (duplicate as many as you need!)
'footer-social-menu' => __('Footer social Menu', 'iotheme') // Extra Navigation if needed (duplicate as many as you need!)
));
}
// Remove the <div> surrounding the dynamic navigation to cleanup markup
function my_wp_nav_menu_args($args = '')
{
$args['container'] = false;
return $args;
}
// Remove Injected classes, ID's and Page ID's from Navigation <li> items
function my_css_attributes_filter($var)
{
return is_array($var) ? array() : '';
}
// Remove invalid rel attribute values in the categorylist
function remove_category_rel_from_category_list($thelist)
{
return str_replace('rel="category tag"', 'rel="tag"', $thelist);
}
// Add page slug to body class, love this - Credit: Starkers Wordpress Theme
function add_slug_to_body_class($classes)
{
global $post;
if (is_home()) {
$key = array_search('blog', $classes);
if ($key > -1) {
unset($classes[$key]);
}
} elseif (is_page()) {
$classes[] = sanitize_html_class($post->post_name);
} elseif (is_singular()) {
$classes[] = sanitize_html_class($post->post_name);
}
return $classes;
}
// If Dynamic Sidebar Exists
if (function_exists('register_sidebar'))
{
// Define Sidebar Widget Area 1
register_sidebar(array(
'name' => __('Widget Area 1', 'iotheme'),
'description' => __('Description for this widget-area...', 'iotheme'),
'id' => 'widget-area-1',
'before_widget' => '<div id="%1$s" class="%2$s">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
// Define Sidebar Widget Area 2
register_sidebar(array(
'name' => __('Widget Area 2', 'iotheme'),
'description' => __('Description for this widget-area...', 'iotheme'),
'id' => 'widget-area-2',
'before_widget' => '<div id="%1$s" class="%2$s">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}
// Remove wp_head() injected Recent Comment styles
function my_remove_recent_comments_style()
{
global $wp_widget_factory;
remove_action('wp_head', array(
$wp_widget_factory->widgets['WP_Widget_Recent_Comments'],
'recent_comments_style'
));
}
// Pagination for paged posts, Page 1, Page 2, Page 3, with Next and Previous Links, No plugin
function html5wp_pagination()
{
global $wp_query;
$big = 999999999;
echo paginate_links(array(
'base' => str_replace($big, '%#%', get_pagenum_link($big)),
'format' => '?paged=%#%',
'current' => max(1, get_query_var('paged')),
'total' => $wp_query->max_num_pages
));
}
// Custom Excerpts
function html5wp_index($length) // Create 20 Word Callback for Index page Excerpts, call using html5wp_excerpt('html5wp_index');
{
return 20;
}
// Create 40 Word Callback for Custom Post Excerpts, call using html5wp_excerpt('html5wp_custom_post');
function html5wp_custom_post($length)
{
return 40;
}
// Create the Custom Excerpts callback
function html5wp_excerpt($length_callback = '', $more_callback = '')
{
global $post;
if (function_exists($length_callback)) {
add_filter('excerpt_length', $length_callback);
}
if (function_exists($more_callback)) {
add_filter('excerpt_more', $more_callback);
}
$output = get_the_excerpt();
$output = apply_filters('wptexturize', $output);
$output = apply_filters('convert_chars', $output);
$output = '<p>' . $output . '</p>';
echo $output;
}
// Custom View Article link to Post
function html5_blank_view_article($more)
{
global $post;
return '... <a class="view-article" href="' . get_permalink($post->ID) . '">' . __('View Article', 'iotheme') . '</a>';
}
// Remove Admin bar
function remove_admin_bar()
{
return false;
}
// Remove 'text/css' from our enqueued stylesheet
function html5_style_remove($tag)
{
return preg_replace('~\s+type=["\'][^"\']++["\']~', '', $tag);
}
// Remove thumbnail width and height dimensions that prevent fluid images in the_thumbnail
function remove_thumbnail_dimensions( $html )
{
$html = preg_replace('/(width|height)=\"\d*\"\s/', "", $html);
return $html;
}
// Custom Gravatar in Settings > Discussion
function iothemegravatar ($avatar_defaults)
{
$myavatar = get_template_directory_uri() . '/img/gravatar.jpg';
$avatar_defaults[$myavatar] = "Custom Gravatar";
return $avatar_defaults;
}
// Threaded Comments
function enable_threaded_comments()
{
if (!is_admin()) {
if (is_singular() AND comments_open() AND (get_option('thread_comments') == 1)) {
wp_enqueue_script('comment-reply');
}
}
}
// Custom Comments Callback
function iothemecomments($comment, $args, $depth)
{
$GLOBALS['comment'] = $comment;
extract($args, EXTR_SKIP);
if ( 'div' == $args['style'] ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li';
$add_below = 'div-comment';
}
?>
<!-- heads up: starting < for the html tag (li or div) in the next line: -->
<<?php echo $tag ?> <?php comment_class(empty( $args['has_children'] ) ? '' : 'parent') ?> id="comment-<?php comment_ID() ?>">
<?php if ( 'div' != $args['style'] ) : ?>
<div id="div-comment-<?php comment_ID() ?>" class="comment-body">
<?php endif; ?>
<div class="comment-author vcard">
<?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['180'] ); ?>
<?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) ?>
</div>
<?php if ($comment->comment_approved == '0') : ?>
<em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.') ?></em>
<br />
<?php endif; ?>
<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>">
<?php
printf( __('%1$s at %2$s'), get_comment_date(), get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),' ','' );
?>
</div>
<?php comment_text() ?>
<div class="reply">
<?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
</div>
<?php if ( 'div' != $args['style'] ) : ?>
</div>
<?php endif; ?>
<?php }
/*------------------------------------*\
Actions + Filters + ShortCodes
\*------------------------------------*/
// Add Actions
add_action('init', 'iotheme_header_scripts'); // Add Custom Scripts to wp_head
add_action('wp_print_scripts', 'iotheme_conditional_scripts'); // Add Conditional Page Scripts
add_action('get_header', 'enable_threaded_comments'); // Enable Threaded Comments
add_action('wp_enqueue_scripts', 'iotheme_styles'); // Add Theme Stylesheet
add_action('init', 'register_html5_menu'); // Add IO Theme Menu
// add_action('init', 'create_post_type_iotheme'); // Add our Publication Type
add_action('widgets_init', 'my_remove_recent_comments_style'); // Remove inline Recent Comment Styles from wp_head()
add_action('init', 'html5wp_pagination'); // Add our HTML5 Pagination
// Remove Actions
remove_action('wp_head', 'feed_links_extra', 3); // Display the links to the extra feeds such as category feeds
remove_action('wp_head', 'feed_links', 2); // Display the links to the general feeds: Post and Comment Feed
remove_action('wp_head', 'rsd_link'); // Display the link to the Really Simple Discovery service endpoint, EditURI link
remove_action('wp_head', 'wlwmanifest_link'); // Display the link to the Windows Live Writer manifest file.
remove_action('wp_head', 'index_rel_link'); // Index link
remove_action('wp_head', 'parent_post_rel_link', 10, 0); // Prev link
remove_action('wp_head', 'start_post_rel_link', 10, 0); // Start link
remove_action('wp_head', 'adjacent_posts_rel_link', 10, 0); // Display relational links for the posts adjacent to the current post.
remove_action('wp_head', 'wp_generator'); // Display the XHTML generator that is generated on the wp_head hook, WP version
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
remove_action('wp_head', 'rel_canonical');
remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
// Add Filters
add_filter('avatar_defaults', 'iothemegravatar'); // Custom Gravatar in Settings > Discussion
add_filter('body_class', 'add_slug_to_body_class'); // Add slug to body class (Starkers build)
add_filter('widget_text', 'do_shortcode'); // Allow shortcodes in Dynamic Sidebar
add_filter('widget_text', 'shortcode_unautop'); // Remove <p> tags in Dynamic Sidebars (better!)
add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args'); // Remove surrounding <div> from WP Navigation
// add_filter('nav_menu_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation <li> injected classes (Commented out by default)
// add_filter('nav_menu_item_id', 'my_css_attributes_filter', 100, 1); // Remove Navigation <li> injected ID (Commented out by default)
// add_filter('page_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation <li> Page ID's (Commented out by default)
add_filter('the_category', 'remove_category_rel_from_category_list'); // Remove invalid rel attribute
add_filter('the_excerpt', 'shortcode_unautop'); // Remove auto <p> tags in Excerpt (Manual Excerpts only)
add_filter('the_excerpt', 'do_shortcode'); // Allows Shortcodes to be executed in Excerpt (Manual Excerpts only)
add_filter('excerpt_more', 'html5_blank_view_article'); // Add 'View Article' button instead of [...] for Excerpts
add_filter('show_admin_bar', 'remove_admin_bar'); // Remove Admin bar
add_filter('style_loader_tag', 'html5_style_remove'); // Remove 'text/css' from enqueued stylesheet
add_filter('post_thumbnail_html', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to thumbnails
add_filter('image_send_to_editor', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to post images
// Remove Filters
remove_filter('the_excerpt', 'wpautop'); // Remove <p> tags from Excerpt altogether
// Shortcodes
add_shortcode('html5_shortcode_demo', 'html5_shortcode_demo'); // You can place [html5_shortcode_demo] in Pages, Posts now.
add_shortcode('html5_shortcode_demo_2', 'html5_shortcode_demo_2'); // Place [html5_shortcode_demo_2] in Pages, Posts now.
// Shortcodes above would be nested like this -
// [html5_shortcode_demo] [html5_shortcode_demo_2] Here's the page title! [/html5_shortcode_demo_2] [/html5_shortcode_demo]
/*------------------------------------*\
Custom Post Types
\*------------------------------------*/
// Create 1 Custom Post type for a Demo, called io-publication
// function create_post_type_iotheme()
// {
// register_taxonomy_for_object_type('category', 'io-publication'); // Register Taxonomies for Category
// register_taxonomy_for_object_type('post_tag', 'io-publication');
// register_post_type('io-publication', // Register Custom Post Type
// array(
// 'labels' => array(
// 'name' => __('Publications', 'iotheme'), // Rename these to suit
// 'singular_name' => __('Publication', 'iotheme'),
// 'add_new' => __('Add New', 'iotheme'),
// 'add_new_item' => __('Add New Publication', 'iotheme'),
// 'edit' => __('Edit', 'iotheme'),
// 'edit_item' => __('Edit Publication', 'iotheme'),
// 'new_item' => __('New Publication', 'iotheme'),
// 'view' => __('View Publication', 'iotheme'),
// 'view_item' => __('View Publication', 'iotheme'),
// 'search_items' => __('Search Publication', 'iotheme'),
// 'not_found' => __('No Publications found', 'iotheme'),
// 'not_found_in_trash' => __('No Publications found in Trash', 'iotheme')
// ),
// 'public' => true,
// 'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages
// 'has_archive' => true,
// 'supports' => array(
// 'title',
// 'editor',
// 'excerpt',
// 'thumbnail'
// ), // Go to Dashboard Custom IO Theme post for supports
// 'can_export' => true, // Allows export in Tools > Export
// 'taxonomies' => array(
// 'post_tag',
// 'category'
// ) // Add Category and Post Tags support
// ));
// }
/*------------------------------------*\
ShortCode Functions
\*------------------------------------*/
// Shortcode Demo with Nested Capability
function html5_shortcode_demo($atts, $content = null)
{
return '<div class="shortcode-demo">' . do_shortcode($content) . '</div>'; // do_shortcode allows for nested Shortcodes
}
// Shortcode Demo with simple <h2> tag
function html5_shortcode_demo_2($atts, $content = null) // Demo Heading H2 shortcode, allows for nesting within above element. Fully expandable.
{
return '<h2>' . $content . '</h2>';
}
/*------------------------------------*\
Custom taxonomy
\*------------------------------------*/
// function iotheme_register_taxonomy_client()
// {
// $labels = [
// 'name' => _x('Clients', 'taxonomy general name'),
// 'singular_name' => _x('Client', 'taxonomy singular name'),
// 'search_items' => __('Search Clients'),
// 'all_items' => __('All Clients'),
// 'parent_item' => __('Parent Client'),
// 'parent_item_colon' => __('Parent Client:'),
// 'edit_item' => __('Edit Client'),
// 'update_item' => __('Update Client'),
// 'add_new_item' => __('Add New Client'),
// 'new_item_name' => __('New Client Name'),
// 'menu_name' => __('Client'),
// ];
// $args = [
// 'hierarchical' => false, // make it hierarchical (like categories)
// 'labels' => $labels,
// 'show_ui' => true,
// 'show_admin_column' => true,
// 'query_var' => true,
// 'rewrite' => ['slug' => 'Client'],
// 'show_in_rest' => true,
// ];
// register_taxonomy('Client', ['post'], $args);
// }
// add_action('init', 'iotheme_register_taxonomy_client');
?>

86
header.php Executable file
View File

@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title>
<?php wp_title(''); ?>
<?php if(wp_title('', false)) { echo ' :'; } ?>
<?php bloginfo('name'); ?>
</title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<!-- <link href="<?php echo get_template_directory_uri(); ?>/img/icons/favicon.ico" rel="shortcut icon">
<link href="<?php echo get_template_directory_uri(); ?>/img/icons/touch.png" rel="apple-touch-icon-precomposed"> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
<script>
// conditionizr.com
// configure environment tests
conditionizr.config({
assets: '<?php echo get_template_directory_uri(); ?>',
tests: {}
});
</script>
</head>
<body <?php body_class(); ?>>
<!-- wrapper -->
<div class="wrapper">
<!-- header -->
<header class="header clear" role="banner">
<div class="header-top">
<!-- logo -->
<div class="logo" class="topbar">
<a href="<?php echo home_url(); ?>">
<!-- svg logo - toddmotto.com/mastering-svg-use-for-a-retina-web-fallbacks-with-png-script -->
<!-- <img src="<?php echo get_template_directory_uri(); ?>/img/IO-logo-small.svg" alt="Logo" class="logo-img"> -->
<object data="<?php echo get_template_directory_uri(); ?>/img/IO-logo-small-black.svg" type="image/svg+xml">
<img src="<?php echo get_template_directory_uri(); ?>/img/IO-logo-small-black-100.png" />
</object>
</a>
</div>
<!-- /logo -->
<div id="motto" class="topbar">
<a href="<?php echo home_url(); ?>">
<?php echo get_bloginfo( 'description' ); ?>
</a>
</div>
<div id="spacer" class="topbar"></div>
<div id="menubutton" class="topbar">
<a id="menuopen" class="menuelem"> MENU </a>
<a id="menuclose" class="menuelem">
<object class="menuelem" data="<?php echo get_template_directory_uri(); ?>/img/menuclose-x.svg" type="image/svg+xml">
<img src="<?php echo get_template_directory_uri(); ?>/img/menuclose-x.png" />
</object>
</a>
</div>
</div>
<div class="topnav">
<!-- nav -->
<nav class="nav" role="navigation">
<?php iotheme_nav(); ?>
</nav>
<nav class="nav lang-menu" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'lang-menu' ) ); ?>
</nav>
<nav class="nav social-menu" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'social-menu' ) ); ?>
</nav>
<!-- /nav -->
</div>
</header>
<!-- /header -->

BIN
img/IO-logo-full-black-100.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

170
img/IO-logo-full-black.svg Executable file
View File

@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="F_LOGO"
viewBox="0 0 214.189 49.088"
version="1.1"
sodipodi:docname="IO-logo-full.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata5249">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2449"
inkscape:window-height="1401"
id="namedview5247"
showgrid="false"
inkscape:zoom="1.8815159"
inkscape:cx="107.0945"
inkscape:cy="24.544001"
inkscape:window-x="485"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="F_LOGO" />
<defs
id="defs5227">
<style
id="style5225">
.cls-1 {
fill: #fff;
}
</style>
</defs>
<g
id="Group_12"
data-name="Group 12"
style="fill:#000000;fill-opacity:1">
<rect
id="Rectangle_8"
data-name="Rectangle 8"
class="cls-1"
width="9.989"
height="46.348"
style="fill:#000000;fill-opacity:1" />
</g>
<g
id="Group_13"
data-name="Group 13"
transform="translate(47.69)"
style="fill:#000000;fill-opacity:1">
<path
id="Path_17"
data-name="Path 17"
class="cls-1"
d="M191.644,9.989a14.541,14.541,0,1,1-14.527,14.555A14.555,14.555,0,0,1,191.644,9.989m0-9.989a24.544,24.544,0,1,0,24.544,24.544A24.543,24.543,0,0,0,191.644,0Z"
transform="translate(-167.1 0)"
style="fill:#000000;fill-opacity:1" />
</g>
<g
id="Group_14"
data-name="Group 14"
transform="translate(125.117 22.175)"
style="fill:#000000;fill-opacity:1">
<path
id="Path_18"
data-name="Path 18"
class="cls-1"
d="M438.457,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057V84.65a.061.061,0,0,0,.057.057h3.71a.061.061,0,0,1,.057.057v1.084a.061.061,0,0,1-.057.057h-5.023Z"
transform="translate(-438.4 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_19"
data-name="Path 19"
class="cls-1"
d="M459.857,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057Z"
transform="translate(-453.693 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_20"
data-name="Path 20"
class="cls-1"
d="M476.207,78.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-1.627c-.029,0-.057-.029-.086-.057l-2.968-5.736c-.029-.029-.029-.057-.057-.057a.061.061,0,0,0-.057.057V85.82a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.627a.061.061,0,0,1,.057.057l3,5.736c.029.029.029.057.057.057a.061.061,0,0,0,.057-.057V78.257a.061.061,0,0,1,.057-.057Z"
transform="translate(-461.053 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_21"
data-name="Path 21"
class="cls-1"
d="M502.594,84.678a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-5.337a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h5.337a.061.061,0,0,1,.057.057v1.085a.061.061,0,0,1-.057.057H498.57a.061.061,0,0,0-.057.057v1.884a.061.061,0,0,0,.057.057h3.482a.061.061,0,0,1,.057.057v1.085a.061.061,0,0,1-.057.057H498.57a.061.061,0,0,0-.057.057v2a.061.061,0,0,0,.057.057h4.024Z"
transform="translate(-480.419 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_22"
data-name="Path 22"
class="cls-1"
d="M532.312,84.207c-.029,0-.057.029-.086.057l-.057.2-.4,1.256a.061.061,0,0,1-.057.057h-1.256c-.057,0-.057-.029-.057-.086l2.426-7.534c.029-.029.029-.057.057-.057h1.969a.061.061,0,0,1,.057.057l2.4,7.534c0,.057,0,.086-.057.086h-1.256a.061.061,0,0,1-.057-.057l-.371-1.142-.114-.314c-.029-.029-.029-.057-.086-.057Zm.314-1.256c-.029.029,0,.057.057.057h2.34c.029,0,.057-.029.029-.057l-1.142-3.6c-.029-.029-.029-.057-.057-.057s-.029.029-.057.057Z"
transform="translate(-504.144 -77.986)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_23"
data-name="Path 23"
class="cls-1"
d="M565.207,78.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-1.627c-.029,0-.057-.029-.086-.057l-2.968-5.736c-.029-.029-.029-.057-.057-.057a.061.061,0,0,0-.057.057V85.82a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.627a.061.061,0,0,1,.057.057l3,5.736c.029.029.029.057.057.057a.061.061,0,0,0,.057-.057V78.257a.061.061,0,0,1,.057-.057Z"
transform="translate(-524.653 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_24"
data-name="Path 24"
class="cls-1"
d="M586.357,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h2.8a3.578,3.578,0,0,1,1.513.285,3.068,3.068,0,0,1,1.085.8,3.375,3.375,0,0,1,.656,1.227,5.5,5.5,0,0,1,.2,1.57,5.369,5.369,0,0,1-.2,1.57,2.777,2.777,0,0,1-.656,1.17,2.938,2.938,0,0,1-1.085.742,4.1,4.1,0,0,1-1.513.257h-2.8Zm2.8-1.2a1.941,1.941,0,0,0,1.541-.656,2.883,2.883,0,0,0,.542-1.912A4.22,4.22,0,0,0,591.095,81a2.38,2.38,0,0,0-.4-.856,1.722,1.722,0,0,0-.656-.542,2.126,2.126,0,0,0-.885-.2h-1.513a.061.061,0,0,0-.057.057v5.166a.061.061,0,0,0,.057.057h1.513Z"
transform="translate(-544.09 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_25"
data-name="Path 25"
class="cls-1"
d="M629.565,80.569a2.273,2.273,0,0,1-.342,1.227,2.159,2.159,0,0,1-.856.828v.057l1.4,3.111c.029.057,0,.086-.057.086h-1.256c-.029,0-.029,0-.057-.029l-1.256-2.854c-.029-.029-.029-.057-.057-.057H625.37a.061.061,0,0,0-.057.057v2.854a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h3.2a2.325,2.325,0,0,1,.885.171,2.172,2.172,0,0,1,.742.514,2.853,2.853,0,0,1,.514.742A2.512,2.512,0,0,1,629.565,80.569ZM627.2,81.71a.655.655,0,0,0,.4-.114.779.779,0,0,0,.342-.257,1.617,1.617,0,0,0,.228-.371,1.26,1.26,0,0,0,0-.913,1.085,1.085,0,0,0-.257-.371,1.341,1.341,0,0,0-.342-.257,1.145,1.145,0,0,0-.428-.086h-1.8a.061.061,0,0,0-.057.057v2.226a.061.061,0,0,0,.057.057H627.2Z"
transform="translate(-571.031 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_26"
data-name="Path 26"
class="cls-1"
d="M654.064,81.667a5.688,5.688,0,0,1-.228,1.6,3.508,3.508,0,0,1-.656,1.256,2.76,2.76,0,0,1-1.084.8,4.151,4.151,0,0,1-3.025,0,3.068,3.068,0,0,1-1.085-.8,3.508,3.508,0,0,1-.656-1.256,5.707,5.707,0,0,1,0-3.2,3.508,3.508,0,0,1,.656-1.256,3.139,3.139,0,0,1,1.085-.828,4.151,4.151,0,0,1,3.025,0,2.827,2.827,0,0,1,1.084.828,3.508,3.508,0,0,1,.656,1.256A4.925,4.925,0,0,1,654.064,81.667Zm-3.453,2.74a1.86,1.86,0,0,0,1.57-.742,3.486,3.486,0,0,0,.542-2.026,3.286,3.286,0,0,0-.542-2.026,1.824,1.824,0,0,0-1.57-.742,1.86,1.86,0,0,0-1.57.742,3.486,3.486,0,0,0-.542,2.026,3.286,3.286,0,0,0,.542,2.026A1.79,1.79,0,0,0,650.61,84.407Z"
transform="translate(-587.538 -77.7)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_27"
data-name="Path 27"
class="cls-1"
d="M681.694,83.194a2.841,2.841,0,0,1-.228,1.085,2.83,2.83,0,0,1-1.484,1.484,2.841,2.841,0,0,1-1.084.228,2.732,2.732,0,0,1-1.085-.228,2.829,2.829,0,0,1-1.484-1.484,2.732,2.732,0,0,1-.228-1.085V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057v4.966a1.278,1.278,0,0,0,.114.571,1.3,1.3,0,0,0,.314.457,1.631,1.631,0,0,0,.457.314,1.484,1.484,0,0,0,1.142,0,1.3,1.3,0,0,0,.457-.314,1.63,1.63,0,0,0,.314-.457,1.278,1.278,0,0,0,.114-.571V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057v4.937Z"
transform="translate(-608.262 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_28"
data-name="Path 28"
class="cls-1"
d="M707.307,78.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-1.627c-.029,0-.057-.029-.086-.057l-2.968-5.736c-.029-.029-.029-.057-.057-.057a.061.061,0,0,0-.057.057V85.82a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.627a.061.061,0,0,1,.057.057l3,5.736c.029.029.029.057.057.057a.061.061,0,0,0,.057-.057V78.257a.061.061,0,0,1,.057-.057Z"
transform="translate(-626.198 -78.057)"
style="fill:#000000;fill-opacity:1" />
<path
id="Path_29"
data-name="Path 29"
class="cls-1"
d="M728.457,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h2.8a3.579,3.579,0,0,1,1.513.285,3.068,3.068,0,0,1,1.085.8,3.377,3.377,0,0,1,.656,1.227,5.5,5.5,0,0,1,.2,1.57,5.369,5.369,0,0,1-.2,1.57,2.778,2.778,0,0,1-.656,1.17,2.938,2.938,0,0,1-1.085.742,4.1,4.1,0,0,1-1.513.257h-2.8Zm2.8-1.2a1.941,1.941,0,0,0,1.541-.656,2.883,2.883,0,0,0,.542-1.912A4.222,4.222,0,0,0,733.195,81a2.381,2.381,0,0,0-.4-.856,1.721,1.721,0,0,0-.656-.542,2.125,2.125,0,0,0-.885-.2h-1.513a.061.061,0,0,0-.057.057v5.166a.061.061,0,0,0,.057.057h1.513Z"
transform="translate(-645.635 -78.057)"
style="fill:#000000;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

BIN
img/IO-logo-full-white-100.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

174
img/IO-logo-full-white.svg Executable file
View File

@@ -0,0 +1,174 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="F_LOGO"
viewBox="0 0 214.189 49.088"
version="1.1"
sodipodi:docname="IO-logo-full-white.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
inkscape:export-filename="E:\Nextcloud\Munka_szöveges\I O\exports\IO-logo-full-white.png"
inkscape:export-xdpi="195.56714"
inkscape:export-ydpi="195.56714">
<metadata
id="metadata5249">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2449"
inkscape:window-height="1401"
id="namedview5247"
showgrid="false"
inkscape:zoom="5.3217306"
inkscape:cx="79.851932"
inkscape:cy="2.5548519"
inkscape:window-x="485"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="F_LOGO" />
<defs
id="defs5227">
<style
id="style5225">
.cls-1 {
fill: #fff;
}
</style>
</defs>
<g
id="Group_12"
data-name="Group 12"
style="fill:#ffffff;fill-opacity:1">
<rect
id="Rectangle_8"
data-name="Rectangle 8"
class="cls-1"
width="9.989"
height="46.348"
style="fill:#ffffff;fill-opacity:1" />
</g>
<g
id="Group_13"
data-name="Group 13"
transform="translate(47.69)"
style="fill:#ffffff;fill-opacity:1">
<path
id="Path_17"
data-name="Path 17"
class="cls-1"
d="M191.644,9.989a14.541,14.541,0,1,1-14.527,14.555A14.555,14.555,0,0,1,191.644,9.989m0-9.989a24.544,24.544,0,1,0,24.544,24.544A24.543,24.543,0,0,0,191.644,0Z"
transform="translate(-167.1 0)"
style="fill:#ffffff;fill-opacity:1" />
</g>
<g
id="Group_14"
data-name="Group 14"
transform="translate(125.117 22.175)"
style="fill:#ffffff;fill-opacity:1">
<path
id="Path_18"
data-name="Path 18"
class="cls-1"
d="M438.457,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057V84.65a.061.061,0,0,0,.057.057h3.71a.061.061,0,0,1,.057.057v1.084a.061.061,0,0,1-.057.057h-5.023Z"
transform="translate(-438.4 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_19"
data-name="Path 19"
class="cls-1"
d="M459.857,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057Z"
transform="translate(-453.693 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_20"
data-name="Path 20"
class="cls-1"
d="M476.207,78.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-1.627c-.029,0-.057-.029-.086-.057l-2.968-5.736c-.029-.029-.029-.057-.057-.057a.061.061,0,0,0-.057.057V85.82a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.627a.061.061,0,0,1,.057.057l3,5.736c.029.029.029.057.057.057a.061.061,0,0,0,.057-.057V78.257a.061.061,0,0,1,.057-.057Z"
transform="translate(-461.053 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_21"
data-name="Path 21"
class="cls-1"
d="M502.594,84.678a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-5.337a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h5.337a.061.061,0,0,1,.057.057v1.085a.061.061,0,0,1-.057.057H498.57a.061.061,0,0,0-.057.057v1.884a.061.061,0,0,0,.057.057h3.482a.061.061,0,0,1,.057.057v1.085a.061.061,0,0,1-.057.057H498.57a.061.061,0,0,0-.057.057v2a.061.061,0,0,0,.057.057h4.024Z"
transform="translate(-480.419 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_22"
data-name="Path 22"
class="cls-1"
d="M532.312,84.207c-.029,0-.057.029-.086.057l-.057.2-.4,1.256a.061.061,0,0,1-.057.057h-1.256c-.057,0-.057-.029-.057-.086l2.426-7.534c.029-.029.029-.057.057-.057h1.969a.061.061,0,0,1,.057.057l2.4,7.534c0,.057,0,.086-.057.086h-1.256a.061.061,0,0,1-.057-.057l-.371-1.142-.114-.314c-.029-.029-.029-.057-.086-.057Zm.314-1.256c-.029.029,0,.057.057.057h2.34c.029,0,.057-.029.029-.057l-1.142-3.6c-.029-.029-.029-.057-.057-.057s-.029.029-.057.057Z"
transform="translate(-504.144 -77.986)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_23"
data-name="Path 23"
class="cls-1"
d="M565.207,78.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-1.627c-.029,0-.057-.029-.086-.057l-2.968-5.736c-.029-.029-.029-.057-.057-.057a.061.061,0,0,0-.057.057V85.82a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.627a.061.061,0,0,1,.057.057l3,5.736c.029.029.029.057.057.057a.061.061,0,0,0,.057-.057V78.257a.061.061,0,0,1,.057-.057Z"
transform="translate(-524.653 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_24"
data-name="Path 24"
class="cls-1"
d="M586.357,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h2.8a3.578,3.578,0,0,1,1.513.285,3.068,3.068,0,0,1,1.085.8,3.375,3.375,0,0,1,.656,1.227,5.5,5.5,0,0,1,.2,1.57,5.369,5.369,0,0,1-.2,1.57,2.777,2.777,0,0,1-.656,1.17,2.938,2.938,0,0,1-1.085.742,4.1,4.1,0,0,1-1.513.257h-2.8Zm2.8-1.2a1.941,1.941,0,0,0,1.541-.656,2.883,2.883,0,0,0,.542-1.912A4.22,4.22,0,0,0,591.095,81a2.38,2.38,0,0,0-.4-.856,1.722,1.722,0,0,0-.656-.542,2.126,2.126,0,0,0-.885-.2h-1.513a.061.061,0,0,0-.057.057v5.166a.061.061,0,0,0,.057.057h1.513Z"
transform="translate(-544.09 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_25"
data-name="Path 25"
class="cls-1"
d="M629.565,80.569a2.273,2.273,0,0,1-.342,1.227,2.159,2.159,0,0,1-.856.828v.057l1.4,3.111c.029.057,0,.086-.057.086h-1.256c-.029,0-.029,0-.057-.029l-1.256-2.854c-.029-.029-.029-.057-.057-.057H625.37a.061.061,0,0,0-.057.057v2.854a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h3.2a2.325,2.325,0,0,1,.885.171,2.172,2.172,0,0,1,.742.514,2.853,2.853,0,0,1,.514.742A2.512,2.512,0,0,1,629.565,80.569ZM627.2,81.71a.655.655,0,0,0,.4-.114.779.779,0,0,0,.342-.257,1.617,1.617,0,0,0,.228-.371,1.26,1.26,0,0,0,0-.913,1.085,1.085,0,0,0-.257-.371,1.341,1.341,0,0,0-.342-.257,1.145,1.145,0,0,0-.428-.086h-1.8a.061.061,0,0,0-.057.057v2.226a.061.061,0,0,0,.057.057H627.2Z"
transform="translate(-571.031 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_26"
data-name="Path 26"
class="cls-1"
d="M654.064,81.667a5.688,5.688,0,0,1-.228,1.6,3.508,3.508,0,0,1-.656,1.256,2.76,2.76,0,0,1-1.084.8,4.151,4.151,0,0,1-3.025,0,3.068,3.068,0,0,1-1.085-.8,3.508,3.508,0,0,1-.656-1.256,5.707,5.707,0,0,1,0-3.2,3.508,3.508,0,0,1,.656-1.256,3.139,3.139,0,0,1,1.085-.828,4.151,4.151,0,0,1,3.025,0,2.827,2.827,0,0,1,1.084.828,3.508,3.508,0,0,1,.656,1.256A4.925,4.925,0,0,1,654.064,81.667Zm-3.453,2.74a1.86,1.86,0,0,0,1.57-.742,3.486,3.486,0,0,0,.542-2.026,3.286,3.286,0,0,0-.542-2.026,1.824,1.824,0,0,0-1.57-.742,1.86,1.86,0,0,0-1.57.742,3.486,3.486,0,0,0-.542,2.026,3.286,3.286,0,0,0,.542,2.026A1.79,1.79,0,0,0,650.61,84.407Z"
transform="translate(-587.538 -77.7)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_27"
data-name="Path 27"
class="cls-1"
d="M681.694,83.194a2.841,2.841,0,0,1-.228,1.085,2.83,2.83,0,0,1-1.484,1.484,2.841,2.841,0,0,1-1.084.228,2.732,2.732,0,0,1-1.085-.228,2.829,2.829,0,0,1-1.484-1.484,2.732,2.732,0,0,1-.228-1.085V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057v4.966a1.278,1.278,0,0,0,.114.571,1.3,1.3,0,0,0,.314.457,1.631,1.631,0,0,0,.457.314,1.484,1.484,0,0,0,1.142,0,1.3,1.3,0,0,0,.457-.314,1.63,1.63,0,0,0,.314-.457,1.278,1.278,0,0,0,.114-.571V78.257a.061.061,0,0,1,.057-.057h1.2a.061.061,0,0,1,.057.057v4.937Z"
transform="translate(-608.262 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_28"
data-name="Path 28"
class="cls-1"
d="M707.307,78.2a.061.061,0,0,1,.057.057V85.82a.061.061,0,0,1-.057.057h-1.627c-.029,0-.057-.029-.086-.057l-2.968-5.736c-.029-.029-.029-.057-.057-.057a.061.061,0,0,0-.057.057V85.82a.061.061,0,0,1-.057.057h-1.2a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h1.627a.061.061,0,0,1,.057.057l3,5.736c.029.029.029.057.057.057a.061.061,0,0,0,.057-.057V78.257a.061.061,0,0,1,.057-.057Z"
transform="translate(-626.198 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
<path
id="Path_29"
data-name="Path 29"
class="cls-1"
d="M728.457,85.877a.061.061,0,0,1-.057-.057V78.257a.061.061,0,0,1,.057-.057h2.8a3.579,3.579,0,0,1,1.513.285,3.068,3.068,0,0,1,1.085.8,3.377,3.377,0,0,1,.656,1.227,5.5,5.5,0,0,1,.2,1.57,5.369,5.369,0,0,1-.2,1.57,2.778,2.778,0,0,1-.656,1.17,2.938,2.938,0,0,1-1.085.742,4.1,4.1,0,0,1-1.513.257h-2.8Zm2.8-1.2a1.941,1.941,0,0,0,1.541-.656,2.883,2.883,0,0,0,.542-1.912A4.222,4.222,0,0,0,733.195,81a2.381,2.381,0,0,0-.4-.856,1.721,1.721,0,0,0-.656-.542,2.125,2.125,0,0,0-.885-.2h-1.513a.061.061,0,0,0-.057.057v5.166a.061.061,0,0,0,.057.057h1.513Z"
transform="translate(-645.635 -78.057)"
style="fill:#ffffff;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

BIN
img/IO-logo-small-black-100.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

90
img/IO-logo-small-black.svg Executable file
View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="F_LOGO"
viewBox="0 0 96.778002 49.088"
version="1.1"
sodipodi:docname="IO-logo-small.svg"
width="96.778"
height="49.088001"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata4586">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2449"
inkscape:window-height="1401"
id="namedview4584"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.7630318"
inkscape:cx="104.47921"
inkscape:cy="2.9820511"
inkscape:window-x="485"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="F_LOGO" />
<defs
id="defs4564">
<style
id="style4562">
.cls-1 {
fill: #fff;
}
</style>
</defs>
<g
id="Group_12"
data-name="Group 12"
style="fill:#000000;fill-opacity:1">
<rect
id="Rectangle_8"
data-name="Rectangle 8"
class="cls-1"
width="9.9890003"
height="46.348"
style="fill:#000000;fill-opacity:1"
x="0"
y="0" />
</g>
<g
id="Group_13"
data-name="Group 13"
transform="translate(47.69)"
style="fill:#000000;fill-opacity:1">
<path
id="Path_17"
data-name="Path 17"
class="cls-1"
d="M 191.644,9.989 A 14.541,14.541 0 1 1 177.117,24.544 14.555,14.555 0 0 1 191.644,9.989 m 0,-9.989 A 24.544,24.544 0 1 0 216.188,24.544 24.543,24.543 0 0 0 191.644,0 Z"
transform="translate(-167.1)"
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
img/IO-logo-small-white-100.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

90
img/IO-logo-small-white.svg Executable file
View File

@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="F_LOGO"
viewBox="0 0 96.778002 49.088"
version="1.1"
sodipodi:docname="IO-logo-small-white.svg"
width="96.778"
height="49.088001"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata4586">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2449"
inkscape:window-height="1401"
id="namedview4584"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.7630318"
inkscape:cx="61.295945"
inkscape:cy="2.9820511"
inkscape:window-x="485"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="F_LOGO" />
<defs
id="defs4564">
<style
id="style4562">
.cls-1 {
fill: #fff;
}
</style>
</defs>
<g
id="Group_12"
data-name="Group 12"
style="fill:#ffffff;fill-opacity:1">
<rect
id="Rectangle_8"
data-name="Rectangle 8"
class="cls-1"
width="9.9890003"
height="46.348"
style="fill:#ffffff;fill-opacity:1"
x="0"
y="0" />
</g>
<g
id="Group_13"
data-name="Group 13"
transform="translate(47.69)"
style="fill:#ffffff;fill-opacity:1">
<path
id="Path_17"
data-name="Path 17"
class="cls-1"
d="M 191.644,9.989 A 14.541,14.541 0 1 1 177.117,24.544 14.555,14.555 0 0 1 191.644,9.989 m 0,-9.989 A 24.544,24.544 0 1 0 216.188,24.544 24.543,24.543 0 0 0 191.644,0 Z"
transform="translate(-167.1)"
style="fill:#ffffff;fill-opacity:1"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
img/arrow.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

19
img/arrow.svg Executable file
View File

@@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.965 18.618">
<defs>
<style>
.cls-1, .cls-2 {
fill: none;
stroke: #000;
stroke-width: 3px;
}
.cls-1 {
stroke-linejoin: bevel;
}
</style>
</defs>
<g id="Group_19" data-name="Group 19" transform="translate(1931.656 109.882)">
<path id="Path_30" data-name="Path 30" class="cls-1" d="M-1921.322-134.523l-9.346,8.181,9.346,8.181" transform="translate(0 25.77)"/>
<path id="Path_31" data-name="Path 31" class="cls-2" d="M-1930.668-113.458h20.977" transform="translate(0 12.885)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 642 B

BIN
img/background/1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 659 KiB

BIN
img/background/2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

BIN
img/background/3.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
img/background/4.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
img/icons/favicon.ico Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
img/icons/touch.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
img/menuclose-x.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 983 B

15
img/menuclose-x.svg Executable file
View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.133 15.133">
<defs>
<style>
.cls-1 {
fill: none;
stroke: #fff;
stroke-width: 2px;
}
</style>
</defs>
<g id="X" transform="translate(0.707 0.707)">
<line id="Line_4" data-name="Line 4" class="cls-1" x2="13.719" y2="13.719"/>
<line id="Line_5" data-name="Line 5" class="cls-1" x1="13.719" y2="13.719"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 444 B

73
index.php Executable file
View File

@@ -0,0 +1,73 @@
<?php get_header(); ?>
<main role="main">
<!-- section -->
<section>
<?php
$sticky = get_option('sticky_posts');
if (!empty($sticky)) :
// rsort($sticky);
// if (have_posts()):
$args = array(
'post__in' => $sticky,
'orderby' => 'rand',
'nopaging' => true,
'posts_per_page' => '1'
);
query_posts($args);
// while (have_posts()) :
the_post();
?>
<!-- article -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- post thumbnail -->
<?php if (has_post_thumbnail()) : ?>
<div class="thumbnail-wrapper">
<?php the_post_thumbnail('home-thumb'); ?>
</div>
<?php endif; ?>
<!-- /post thumbnail -->
<!-- post title -->
<h2>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_title(); ?></a>
</h2>
<!-- /post title -->
<span class="take-a-look">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
take a look</a>
</span>
</article>
<!-- /article -->
<?php //endwhile; ?>
<?php else : ?>
<!-- article -->
<article>
<h2>
<?php _e('Sorry, nothing to display.', 'iotheme'); ?>
</h2>
</article>
<!-- /article -->
<?php endif; ?>
</section>
<!-- /section -->
</main>
<?php get_footer(); ?>

2
js/lib/conditionizr-4.3.0.min.js vendored Executable file
View File

@@ -0,0 +1,2 @@
/*! Conditionizr v4.3.0 | (c) 2014 @toddmotto, @markgdyr | MIT license | conditionizr.com */
!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});

7
js/lib/jarallax-element.min.js vendored Executable file
View File

@@ -0,0 +1,7 @@
/*!
* Name : Elements Extension for Jarallax
* Version : 1.0.0
* Author : nK <https://nkdev.info>
* GitHub : https://github.com/nk-o/jarallax
*/!function(n){var o={};function r(t){if(o[t])return o[t].exports;var e=o[t]={i:t,l:!1,exports:{}};return n[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}r.m=n,r.c=o,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";var o=r(n(2));function r(t){return t&&t.__esModule?t:{default:t}}(0,r(n(3)).default)(),(0,o.default)(function(){"undefined"!=typeof jarallax&&jarallax(document.querySelectorAll("[data-jarallax-element]"))})},function(t,e,n){"use strict";t.exports=function(t){"complete"===document.readyState||"interactive"===document.readyState?t.call():document.attachEvent?document.attachEvent("onreadystatechange",function(){"interactive"===document.readyState&&t.call()}):document.addEventListener&&document.addEventListener("DOMContentLoaded",t)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:i.default.jarallax;if(void 0===t)return;var e=t.constructor;["initImg","canInitParallax","init","destroy","clipContainer","coverImage","isVisible","onScroll","onResize"].forEach(function(p){var f=e.prototype[p];e.prototype[p]=function(){var t=this,e=arguments||[];if("initImg"===p&&null!==t.$item.getAttribute("data-jarallax-element")&&(t.options.type="element",t.pureOptions.speed=t.$item.getAttribute("data-jarallax-element")||t.pureOptions.speed),"element"!==t.options.type)return f.apply(t,e);switch(t.pureOptions.threshold=t.$item.getAttribute("data-threshold")||"",p){case"init":var n=t.pureOptions.speed.split(" ");t.options.speed=t.pureOptions.speed||0,t.options.speedY=n[0]?parseFloat(n[0]):0,t.options.speedX=n[1]?parseFloat(n[1]):0;var o=t.pureOptions.threshold.split(" ");t.options.thresholdY=o[0]?parseFloat(o[0]):null,t.options.thresholdX=o[1]?parseFloat(o[1]):null;break;case"onResize":var r=t.css(t.$item,"transform");t.css(t.$item,{transform:""});var i=t.$item.getBoundingClientRect();t.itemData={width:i.width,height:i.height,y:i.top+t.getWindowData().y,x:i.left},t.css(t.$item,{transform:r});break;case"onScroll":var a=t.getWindowData(),s=(a.y+a.height/2-t.itemData.y-t.itemData.height/2)/(a.height/2),l=s*t.options.speedY,u=s*t.options.speedX,c=l,d=u;null!==t.options.thresholdY&&l>t.options.thresholdY&&(c=0),null!==t.options.thresholdX&&u>t.options.thresholdX&&(d=0),t.css(t.$item,{transform:"translate3d("+d+"px,"+c+"px,0)"});break;case"initImg":case"isVisible":case"clipContainer":case"coverImage":return!0}return f.apply(t,e)}})};var o,r=n(4),i=(o=r)&&o.__esModule?o:{default:o}},function(n,t,e){"use strict";(function(t){var e;e="undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{},n.exports=e}).call(this,e(5))},function(t,e,n){"use strict";var o,r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};o=function(){return this}();try{o=o||Function("return this")()||(0,eval)("this")}catch(t){"object"===("undefined"==typeof window?"undefined":r(window))&&(o=window)}t.exports=o}]);
//# sourceMappingURL=jarallax-element.min.js.map

7
js/lib/jarallax.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
js/lib/jarallax.min.js.map Executable file

File diff suppressed because one or more lines are too long

2
js/lib/jquery.lory.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
js/lib/jquery.lory.min.js.map Executable file

File diff suppressed because one or more lines are too long

2
js/lib/lory.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
js/lib/modernizr-2.7.1.min.js vendored Executable file

File diff suppressed because one or more lines are too long

591
js/scripts.js Executable file
View File

@@ -0,0 +1,591 @@
(function ($, root, undefined) {
$(function () {
'use strict';
// DOM ready, take it away
console.log("DOM ready")
//settings
//change the speed in css as well in .wrapper!! 1s
const menuSpeed = 300
const filterspeed = 200
const pressPageSpeed = 300
// global variables
var isMobile
var isUltrawide
var menuopen = false
var menuClosedLeft
// var logoWidth
// var logoPadding = $(".logo").css("padding")
var teamnr = 0
var homeArticlePos = 0
var homeArticleNr = 0
const wrapperWidth = $(".wrapper").outerWidth()
// const templateUrl = '<?= get_bloginfo("template_url"); ?>';
const templateUrl = object_name.templateUrl;
/* ======================== */
/* FUNCTIONS */
/* ======================== */
$.fn.scrollStopped = function (callback) {
var that = this, $this = $(that);
$this.scroll(function (ev) {
clearTimeout($this.data('scrollTimeout'));
$this.data('scrollTimeout', setTimeout(callback.bind(that), 500, ev));
});
};
function convertRemToPixels(rem) {
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
}
function showMenu() {
// logoWidth = $(".logo")[0].getBoundingClientRect().width;
$("#menuopen").hide()
// // if mobile, move the motto left
// if (isMobile) {
// $(".logo").css({
// width: 0,
// padding: 0
// })
// }
if (isMobile) {
$(".logo").hide()
}
// show the menu
$("header .topnav")
.show()
.animate({
left: 0
}, menuSpeed, "linear", function () {
//then show the motto:
menuopen = true;
if (isMobile) {
$(".logo").addClass("inverted")
$(".logo").fadeIn()
}
$(".header-top #motto, #menuclose").fadeIn(function(){
$("#menuclose").css({
display: "inline-block"
})
})
})
}
function hideMenu() {
// if (isMobile) {
// $(".logo").css({
// width: logoWidth,
// padding: logoPadding
// })
// }
$(".header-top #motto, #menuclose").hide()
if (isMobile) {
$(".logo").hide()
$(".logo").removeClass("inverted")
}
$("header .topnav")
.animate({
left: menuClosedLeft
}, menuSpeed, "linear", function () {
$("#menuopen").fadeIn()
$("header .topnav").hide()
menuopen = false
if (isMobile) {
$(".logo").fadeIn()
}
})
}
//-----------------//
// --- loading --- //
//-----------------//
// check if mobile
if ($(window).width() < 1024) {
isMobile = true;
} else {
isMobile = false;
if ($(window).width() < 1921) {
isUltrawide = false
} else {
isUltrawide = true
}
}
//css tricks
$("header .topnav")
.hide()
.css({
// width: "0%"
})
//--------//
// footer //
//--------//
// add date to copyright
var today = new Date();
var year = today.getFullYear();
$(".footer .copyright").append(" " + year)
//add hr after address
if (!isMobile) {
$("#footerbottom #info p br").replaceWith(" ")
$("#footerbottom #info p:nth-child(2)").wrapInner('<p class="footer-address"></p>')
$("#footerbottom #info p:nth-child(2)").append('<p class="hr"></p>')
}
//------//
// home //
//------//
//------//
// menu //
//------//
//settings for mobile:
// menuWidth = "100%"
// menuBorderLeft = "0%"
// menuLeft = 0
menuClosedLeft = "100%"
if (!isMobile) {
//if desktop:
// menuBorderLeft = "9rem"
// menuWidth = (wrapperWidth - convertRemToPixels(parseInt(menuBorderLeft))) + "px"
if (isUltrawide) {
}
}
//Overwrite text for slug
$("#menu-language-selector>li").each(function () {
var theanchor = $(this).children("a")
var langstring = theanchor.attr("lang").split("-")
theanchor.html(langstring[0])
})
//-------//
// about //
//-------//
//wrapper for the secondary title of the about page
$(".page.about article h2:first-of-type").wrap("<span class='h2wrapper'></div>")
//wrapper for the "our team" section on about page
$(".page.about article hr:nth-of-type(odd)").addClass("begin")
$(".page.about article hr:nth-of-type(even)").addClass("end")
$('.page.about hr.begin').each(function () {
var $set = $();
var nxt = this.nextSibling;
while (nxt) {
if (!$(nxt).is('hr.end')) {
$set.push(nxt);
nxt = nxt.nextSibling;
} else break;
}
$set.wrapAll('<div class="team team-' + teamnr + '" />');
teamnr++
});
if (!isMobile) {
$(".page.about article>p, .page.about article>blockquote").addClass("aligned-text")
$(".page.about article>h3").each(function () {
var $set = $(this);
var nxt = this.nextSibling;
while (nxt) {
if (!$(nxt).is('h3') & !$(nxt).is('h2')) {
$set.push(nxt);
nxt = nxt.nextSibling;
} else break;
}
$set.wrapAll('<div class="aligned-text-wrapper" />');
})
}
//-------//
// team //
//-------//
//remove hrs
if (!isMobile) {
$(".page.about article hr").remove();
$(".page.about article>h2, .page.about .team").wrapAll('<div class="teamWrapper" />');
}
//wrap team members
$(".page.about .team").each(function () {
$(this).children("h3, h4, p").wrapAll('<div class="team-text" />');
$(this).children(".team-text").children("h3, h4").wrapAll('<div class="team-header" />');
$(this).children(".team-text").children("p").wrapAll('<div class="team-body" />');
})
//hide team member texts
$(".page.about article .team .team-text").hide();
//-------//
// press //
//-------//
//create vertical
$("body.category-press article.tag-publication").wrapAll("<div class='publication-wrapper article-wrapper'></div>")
$("body.category-press article.tag-award").wrapAll("<div class='award-wrapper article-wrapper'></div>")
var pressPublCount = $(".category-press .publication-wrapper article").length
var pressAwardCount = $(".category-press .award-wrapper article").length
var pressArtHeight = pressPublCount
if (pressAwardCount > pressPublCount) {
pressArtHeight = pressAwardCount
}
$(".category-press article").css({
height: (100 / parseInt(pressArtHeight)) + "%"
})
if (isMobile) {
$(".category-press .tag-publication .project-tags").addClass("active");
} else {
$(".category-press article .project-tags").addClass("active")
}
$(".category-press .article-wrapper").each(function () {
var nr = 0
$(this).children("article").each(function () {
$(this).addClass("art" + nr)
nr++
})
})
//move date on desktop
if (!isMobile) {
$(".category-press section").prepend('<div class="dateWrapper"></div>')
}
$(".category-press .award-wrapper article .project-date").prependTo(".dateWrapper")
//---------//
// process //
//---------//
//add classes for wrapall
var titleNr = -1
var h3contents = [];
$(".page-template-template-process article>h3").each(function () {
titleNr++
$(this).addClass("process-title-" + titleNr)
$(this).next("h2").addClass("process-title-" + titleNr)
h3contents.push($(this).html())
})
var pNr = -1
$(".page-template-template-process article>p").each(function () {
pNr++
$(this).addClass("process-page-" + pNr)
$(this).prev("blockquote").addClass("process-page-" + pNr)
})
//wrap them in divs
for (let i = 0; i < titleNr + 1; i++) {
$(".process-title-" + i).wrapAll("<div class='process-title-wrapper process-title-w-" + i + " '></div>")
}
for (let i = 0; i < pNr + 1; i++) {
$(".process-page-" + i).wrapAll("<div class='process-page-wrapper process-page-w-" + i + " '></div>")
}
//contents at the bottom
$(".process-page-wrapper").append("<ul class='process-contents'></ul")
for (let i = 0; i < h3contents.length; i++) {
const element = h3contents[i];
$(".process-contents").append("<li><a>" + element + "</a></li>")
}
//add the arrow
if (isMobile) {
$(".process-title-wrapper, .process-page-wrapper").append($(".theArrow"))
}
// $(".process-title-wrapper").wrapInner("<div class='paralax-wrapper'></div>");
/* ======================== */
/* SCROLL */
/* ======================== */
$(window).scroll(function () {
if (!menuopen) {
$(".header-top").fadeOut();
}
});
$(window).scrollStopped(function () {
if (!menuopen) {
// setTimeout(function(){
$(".header-top").fadeIn();
// },200)
}
});
/* ======================== */
/* CLICKS */
/* ======================== */
//show/hide menu
$(".menuelem").click(function (e) {
e.preventDefault();
$("header .topnav").stop();
if (!menuopen) {
//ha nem látszik
showMenu()
} else {
// ha látszik
hideMenu()
}
})
$("header a, .topnav").on('click', function (e) {
e.stopPropagation();
});
$(document).on('click', function (e) {
if (menuopen) {
e.preventDefault();
hideMenu()
}
});
//about team
$(".page article .team figure").click(function (e) {
e.preventDefault();
//hide images
if (isMobile) {
$(".page article .team figure,.page article>h2").hide();
} else {
$(this).hide();
$(".page.about article .teamWrapper>h2").hide()
}
//show texts:
$(this).prev(".page article .team-text").show()
$(this).parent().addClass("activemember")
});
$(".page article .team-text").click(function (e) {
e.preventDefault();
//show images
if (isMobile) {
$(".page article .team figure,.page article>h2").show();
} else {
$(this).siblings("figure").show();
if ($(".activemember").length == 1) {
$(".page.about article .teamWrapper>h2").show()
}
}
//hide texts:
$(this).hide()
$(this).parent().removeClass("activemember")
});
/* ============== */
/* PROJECTS */
/* ============== */
$(".category main .tag-list .tag-filter a, .category main .tag-list .tag-filter object").click(function (e) {
e.preventDefault();
console.log("opening")
if ($(".category main .tag-list .tag-filter").hasClass("opened")) {
$(".category main .tag-list .tag-filter").removeClass("opened")
$(".category main .tag-list").removeClass("open")
//move the arrow
$(".category main .tag-list .tag-filter").animate({
width: ""
}, filterspeed)
//flip the arrow
$(".category main .tag-list .tag-filter object").css({
"-moz-transform": "scaleX(-1)",
"-o-transform": "scaleX(-1)",
"-webkit-transform": "scaleX(-1)",
transform: "scaleX(-1)",
filter: "FlipH",
"-ms-filter": '"FlipH"'
})
$(".category main .tag-list .tag-wrapper ").slideUp(filterspeed)
} else {
$(".category main .tag-list .tag-filter").addClass("opened")
$(".category main .tag-list").addClass("open")
//move the arrow
$(".category main .tag-list .tag-filter").animate({
width: "100%"
}, filterspeed)
//flip the arrow
$(".category main .tag-list .tag-filter object").css({
"-moz-transform": "scaleX(1)",
"-o-transform": "scaleX(1)",
"-webkit-transform": "scaleX(1)",
transform: "scaleX(1)",
filter: "",
"-ms-filter": '""'
})
$(".category main .tag-list .tag-wrapper ").slideDown(filterspeed)
}
});
$('.category main .tag-list .tag-wrapper a').click(function (e) {
e.preventDefault();
if ($(this).hasClass("activetag")) {
$(".activetag").removeClass("activetag")
$("article img").animate({
opacity: "1",
filter: "alpha(opacity=100)"
}, filterspeed)
} else {
$(".activetag").removeClass("activetag")
var theTag = $(this).attr("class")
console.log(theTag)
$("article.tag-" + theTag + " img ").animate({
opacity: "1",
filter: "alpha(opacity=100)"
}, filterspeed)
$("article:not( .tag-" + theTag + ") img")
// .addClass("hidden-article")
.animate({
opacity: "0",
filter: "alpha(opacity=0)"
}, filterspeed)
$(this).addClass("activetag")
}
});
/* ============== */
/* CLICKPRESS */
/* ============== */
$("body.category-press .tag-award .project-tags a").click(function (e) {
e.preventDefault();
// only if it's not active
if (!$(this).parent().hasClass("active") & isMobile) {
//move text in
$(this).parent().siblings(".project-content").animate({
left: -(wrapperWidth + convertRemToPixels(4))
}, pressPageSpeed)
//search for the horizontal class:
var articleClasses = $(this).parent().parent().attr("class")
var horizontalClass = ""
var classArr = articleClasses.split(" ")
for (let i = 0; i < classArr.length; i++) {
const element = classArr[i];
if (element.substring(0, 3) == "art") {
horizontalClass = element
}
}
//move other side as well
$("body.category-press .publication-wrapper ." + horizontalClass + " .project-content").animate({
left: -(wrapperWidth + convertRemToPixels(4))
}, pressPageSpeed)
//change typo of text:
$("body.category-press .publication-wrapper ." + horizontalClass + ">.project-tags").removeClass("active")
$(this).parent().addClass("active")
}
});
$("body.category-press .tag-publication .project-tags a").click(function (e) {
e.preventDefault();
if (!$(this).parent().hasClass("active")) {
//move text in
$(this).parent().siblings(".project-content").animate({
left: 0
}, pressPageSpeed)
//search for the horizontal class:
var articleClasses = $(this).parent().parent().attr("class")
var horizontalClass = ""
var classArr = articleClasses.split(" ")
for (let i = 0; i < classArr.length; i++) {
const element = classArr[i];
if (element.substring(0, 3) == "art") {
horizontalClass = element
}
}
//move other side as well
$("body.category-press .award-wrapper ." + horizontalClass + " .project-content").animate({
left: 0
}, pressPageSpeed)
//change typo of text:
$("body.category-press .project-tags.active").removeClass("active")
$(this).parent().addClass("active")
}
});
});
})(jQuery, this);

199
languages/HTML5Blank.pot Executable file
View File

@@ -0,0 +1,199 @@
msgid ""
msgstr ""
"Project-Id-Version: IO Theme WordPress Theme\n"
"POT-Creation-Date: 2013-09-18 00:26+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.5\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"
#: ../404.php:9
msgid "Page not found"
msgstr ""
#: ../404.php:11
msgid "Return home?"
msgstr ""
#: ../archive.php:6
msgid "Archives"
msgstr ""
#: ../author.php:8
msgid "Author Archives for "
msgstr ""
#: ../author.php:14
msgid "About "
msgstr ""
#: ../author.php:41 ../loop.php:22 ../single.php:27
msgid "Published by"
msgstr ""
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "Leave your thoughts"
msgstr ""
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "1 Comment"
msgstr ""
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "% Comments"
msgstr ""
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
#: ../template-demo.php:31
msgid "Sorry, nothing to display."
msgstr ""
#: ../category.php:6
msgid "Categories for"
msgstr ""
#: ../comments.php:3
msgid "Post is password protected. Enter the password to view any comments."
msgstr ""
#: ../comments.php:18
msgid "Comments are closed here."
msgstr ""
#: ../footer.php:6
msgid "Powered by"
msgstr ""
#: ../functions.php:133
msgid "Header Menu"
msgstr ""
#: ../functions.php:134
msgid "Sidebar Menu"
msgstr ""
#: ../functions.php:135
msgid "Extra Menu"
msgstr ""
#: ../functions.php:181
msgid "Widget Area 1"
msgstr ""
#: ../functions.php:182 ../functions.php:193
msgid "Description for this widget-area..."
msgstr ""
#: ../functions.php:192
msgid "Widget Area 2"
msgstr ""
#: ../functions.php:258
msgid "View Article"
msgstr ""
#: ../functions.php:319
#, php-format
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
msgstr ""
#: ../functions.php:322
msgid "Your comment is awaiting moderation."
msgstr ""
#: ../functions.php:328
#, php-format
msgid "%1$s at %2$s"
msgstr ""
#: ../functions.php:328
msgid "(Edit)"
msgstr ""
#: ../functions.php:411 ../functions.php:412
msgid "IO Theme Custom Post"
msgstr ""
#: ../functions.php:413
msgid "Add New"
msgstr ""
#: ../functions.php:414
msgid "Add New IO Theme Custom Post"
msgstr ""
#: ../functions.php:415
msgid "Edit"
msgstr ""
#: ../functions.php:416
msgid "Edit IO Theme Custom Post"
msgstr ""
#: ../functions.php:417
msgid "New IO Theme Custom Post"
msgstr ""
#: ../functions.php:418 ../functions.php:419
msgid "View IO Theme Custom Post"
msgstr ""
#: ../functions.php:420
msgid "Search IO Theme Custom Post"
msgstr ""
#: ../functions.php:421
msgid "No IO Theme Custom Posts found"
msgstr ""
#: ../functions.php:422
msgid "No IO Theme Custom Posts found in Trash"
msgstr ""
#: ../index.php:6
msgid "Latest Posts"
msgstr ""
#: ../search.php:6
#, php-format
msgid "%s Search Results for "
msgstr ""
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr ""
#: ../searchform.php:4
msgid "Search"
msgstr ""
#: ../single.php:33
msgid "Tags: "
msgstr ""
#: ../single.php:35
msgid "Categorised in: "
msgstr ""
#: ../single.php:37
msgid "This post was written by "
msgstr ""
#: ../tag.php:6
msgid "Tag Archive: "
msgstr ""
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr ""
#~ msgid "%s results for "
#~ msgstr "%s Ergebnisse für "

BIN
languages/de_DE.mo Executable file

Binary file not shown.

198
languages/de_DE.po Executable file
View File

@@ -0,0 +1,198 @@
msgid ""
msgstr ""
"Project-Id-Version: IO Theme WordPress Theme\n"
"POT-Creation-Date: 2013-09-18 00:25+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
"Language-Team: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
"Language: German\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.5\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"
#: ../404.php:9
msgid "Page not found"
msgstr "Fehler 404 Die Seite wurde leider nicht gefunden."
#: ../404.php:11
msgid "Return home?"
msgstr "Zurück zur Startseite?"
#: ../archive.php:6
msgid "Archives"
msgstr "Archive"
#: ../author.php:8
msgid "Author Archives for "
msgstr "Autor-Archiv für "
#: ../author.php:14
msgid "About "
msgstr "Über "
#: ../author.php:41 ../loop.php:22 ../single.php:27
msgid "Published by"
msgstr "Veröffentlicht von"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "Leave your thoughts"
msgstr "Schreibe einen Kommentar"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "1 Comment"
msgstr "1 Kommentar"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "% Comments"
msgstr "% Kommentare"
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
#: ../template-demo.php:31
msgid "Sorry, nothing to display."
msgstr "Nichts gefunden, was den Suchkriterien entspricht."
#: ../category.php:6
msgid "Categories for"
msgstr "Kategorie-Archiv für"
#: ../comments.php:3
msgid "Post is password protected. Enter the password to view any comments."
msgstr ""
"Dieser Artikel ist passwortgeschützt. Um die Kommentare sehen zu können muss "
"das Passwort eingegeben werden."
#: ../comments.php:18
msgid "Comments are closed here."
msgstr "Kommentare sind geschlossen."
#: ../footer.php:6
msgid "Powered by"
msgstr "Betrieben mit"
#: ../functions.php:133
msgid "Header Menu"
msgstr "Kopfbereichs-Menü"
#: ../functions.php:134
msgid "Sidebar Menu"
msgstr "Seitenleisten-Menü"
#: ../functions.php:135
msgid "Extra Menu"
msgstr "Zusatz-Menü"
#: ../functions.php:181
msgid "Widget Area 1"
msgstr "Widget-Bereich 1"
#: ../functions.php:182 ../functions.php:193
msgid "Description for this widget-area..."
msgstr "Beschreibung für diesen Widget-Bereich…"
#: ../functions.php:192
msgid "Widget Area 2"
msgstr "Widget-Bereich 2"
#: ../functions.php:258
msgid "View Article"
msgstr "Artikel ansehen"
#: ../functions.php:319
#, php-format
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">sagt:</span>"
#: ../functions.php:322
msgid "Your comment is awaiting moderation."
msgstr "Dein Kommentar muss noch moderiert werden Bitte hab etwas Geduld."
#: ../functions.php:328
#, php-format
msgid "%1$s at %2$s"
msgstr "%1$s um %2$s"
#: ../functions.php:328
msgid "(Edit)"
msgstr "(Bearbeiten)"
#: ../functions.php:411 ../functions.php:412
msgid "IO Theme Custom Post"
msgstr "IO Theme Custom Post-Type"
#: ../functions.php:413
msgid "Add New"
msgstr "Neuen Artikel erstellen"
#: ../functions.php:414
msgid "Add New IO Theme Custom Post"
msgstr "Neuen IO Theme Custom Post erstellen"
#: ../functions.php:415
msgid "Edit"
msgstr "Bearbeiten"
#: ../functions.php:416
msgid "Edit IO Theme Custom Post"
msgstr "IO Theme Custom Post bearbeiten"
#: ../functions.php:417
msgid "New IO Theme Custom Post"
msgstr "Neuer IO Theme Custom Post"
#: ../functions.php:418 ../functions.php:419
msgid "View IO Theme Custom Post"
msgstr "IO Theme Custom Post ansehen"
#: ../functions.php:420
msgid "Search IO Theme Custom Post"
msgstr "IO Theme Custom Post suchen"
#: ../functions.php:421
msgid "No IO Theme Custom Posts found"
msgstr "Keine IO Theme Custom Posts gefunden"
#: ../functions.php:422
msgid "No IO Theme Custom Posts found in Trash"
msgstr "Keine IO Theme Custom Posts im Papierkorb gefunden"
#: ../index.php:6
msgid "Latest Posts"
msgstr "Letzte Artikel"
#: ../search.php:6
#, php-format
msgid "%s Search Results for "
msgstr "%s Suchergebnisse für "
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr "Suchbegriff…"
#: ../searchform.php:4
msgid "Search"
msgstr "Suchen"
#: ../single.php:33
msgid "Tags: "
msgstr "Stichwörter: "
#: ../single.php:35
msgid "Categorised in: "
msgstr "Kategorisiert in: "
#: ../single.php:37
msgid "This post was written by "
msgstr "Dieser Artikel wurde verfasst von "
#: ../tag.php:6
msgid "Tag Archive: "
msgstr "Stichword-Archiv: "
#~ msgid "%s results for "
#~ msgstr "%s Ergebnisse für "

BIN
languages/es_CL.mo Executable file

Binary file not shown.

197
languages/es_CL.po Executable file
View File

@@ -0,0 +1,197 @@
msgid ""
msgstr ""
"Project-Id-Version: IO Theme WordPress Theme\n"
"POT-Creation-Date: 2012-10-18 00:53+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Fabián Núñez <fanuneza@gmail.com>\n"
"Language-Team: Ioan Virag | www.ioanvirag.com <ioan@ioanvirag.com>\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.4\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"
#: ../404.php:9
msgid "Page not found"
msgstr "Página no encontrada"
#: ../404.php:10
msgid "Return home?"
msgstr "¿Regresar al Inicio?"
#: ../archive.php:6
msgid "Archives"
msgstr "Archivos"
#: ../author.php:8
msgid "Author Archives for "
msgstr "Archivos de autor de"
#: ../author.php:41 ../loop.php:22 ../single.php:27
msgid "Published by"
msgstr "Publicado por"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "Leave your thoughts"
msgstr "Deja tus comentarios"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "1 Comment"
msgstr "1 Comentario"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "% Comments"
msgstr "% Comentarios"
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
#: ../template-demo.php:33
msgid "Sorry, nothing to display."
msgstr "Disculpa, nada para mostrar."
#: ../category.php:6
msgid "Categories for"
msgstr "Categorías para"
#: ../comments.php:3
msgid "Post is password protected. Enter the password to view any comments."
msgstr "Entrada protegida. Introduzca la contraseña para ver los comentarios."
#: ../comments.php:18
msgid "Comments are closed here."
msgstr "Los comentarios están cerrados."
#: ../footer.php:6
msgid "Powered by"
msgstr "Desarrollado con"
#: ../functions.php:174
#, php-format
msgid "<span class=\"fn\">%s</span> <span class=\"says\">says:</span>"
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">dice:</span>"
#: ../functions.php:177
msgid "Your comment is awaiting moderation."
msgstr "Su comentario espera moderación."
#: ../functions.php:184
#, php-format
msgid "%1$s at %2$s"
msgstr "%1$s en %2$s"
#: ../functions.php:184
msgid "(Edit)"
msgstr "(Editar)"
#: ../functions.php:209
msgid "Header Menu"
msgstr "Menú de la cabecera"
#: ../functions.php:210
msgid "Sidebar Menu"
msgstr "Menú de la barra lateral"
#: ../functions.php:211
msgid "Extra Menu"
msgstr "Menú extra"
#: ../functions.php:257
msgid "Widget Area 1"
msgstr "Zona 1 de widgets"
#: ../functions.php:258 ../functions.php:269
msgid "Description for this widget-area..."
msgstr "Descripción para esta zona..."
#: ../functions.php:268
msgid "Widget Area 2"
msgstr "Zona 2 de widgets"
#: ../functions.php:333
msgid "View Article"
msgstr "Ver artículo"
#: ../functions.php:438 ../functions.php:439
msgid "IO Theme Custom Post"
msgstr "Entradas personalizadas de IO Theme"
#: ../functions.php:440
msgid "Add New"
msgstr "Añadir nuevo"
#: ../functions.php:441
msgid "Add New IO Theme Custom Post"
msgstr "Añadir entrada personalizada de IO Theme"
#: ../functions.php:442
msgid "Edit"
msgstr "Editar"
#: ../functions.php:443
msgid "Edit IO Theme Custom Post"
msgstr "Editar entrada personalizada de IO Theme"
#: ../functions.php:444
msgid "New IO Theme Custom Post"
msgstr "Nueva entrada personalizada de IO Theme"
#: ../functions.php:445 ../functions.php:446
msgid "View IO Theme Custom Post"
msgstr "Ver entrada personalizada de IO Theme"
#: ../functions.php:447
msgid "Search IO Theme Custom Post"
msgstr "Buscar entrada personalizada de IO Theme"
#: ../functions.php:448
msgid "No IO Theme Custom Posts found"
msgstr "No se han encontrado entradas personalizadas de IO Theme"
#: ../functions.php:449
msgid "No IO Theme Custom Posts found in Trash"
msgstr ""
"No se han encontrado entradas personalizadas de IO Theme en la papelera"
#: ../index.php:6
msgid "Latest Posts"
msgstr "Últimas entradas"
#: ../search.php:6
#, php-format
msgid "%s Search Results for "
msgstr "%s resultados resultados para"
#: ../searchform.php:5
msgid "Search"
msgstr "Buscar"
#: ../single.php:35
msgid "Tags: "
msgstr "Etiquetas: "
#: ../single.php:37
msgid "Categorised in: "
msgstr "Categorizado en: "
#: ../single.php:39
msgid "This post was written by "
msgstr "Esta entrada fue escrita por"
#: ../tag.php:6
msgid "Tag Archive: "
msgstr "Archivo de etiquetas: "
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr "Para buscar, escribe y presiona Enter"
#~ msgid "%s results for "
#~ msgstr "%s Ergebnisse für "
#~ msgid "About"
#~ msgstr "Acerca de"

BIN
languages/es_ES.mo Executable file

Binary file not shown.

193
languages/es_ES.po Executable file
View File

@@ -0,0 +1,193 @@
msgid ""
msgstr ""
"Project-Id-Version: IO Theme WordPress Theme\n"
"POT-Creation-Date: 2012-10-18 00:53+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Fabián Núñez <fanuneza@gmail.com>\n"
"Language-Team: Ioan Virag | www.ioanvirag.com <ioan@ioanvirag.com>\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.4\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"
#: ../404.php:9
msgid "Page not found"
msgstr "Página no encontrada"
#: ../404.php:10
msgid "Return home?"
msgstr "¿Regresar al Inicio?"
#: ../archive.php:6
msgid "Archives"
msgstr "Archivos"
#: ../author.php:8
msgid "Author Archives for "
msgstr "Archivos de autor de"
#: ../author.php:41 ../loop.php:22 ../single.php:27
msgid "Published by"
msgstr "Publicado por"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "Leave your thoughts"
msgstr "Deja tus comentarios"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "1 Comment"
msgstr "1 Comentario"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "% Comments"
msgstr "% Comentarios"
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
#: ../template-demo.php:33
msgid "Sorry, nothing to display."
msgstr "Disculpa, nada para mostrar."
#: ../category.php:6
msgid "Categories for"
msgstr "Categorías para"
#: ../comments.php:3
msgid "Post is password protected. Enter the password to view any comments."
msgstr "Entrada protegida. Introduzca la contraseña para ver los comentarios."
#: ../comments.php:18
msgid "Comments are closed here."
msgstr "Los comentarios están cerrados."
#: ../footer.php:6
msgid "Powered by"
msgstr "Desarrollado con"
#: ../functions.php:174
#, php-format
msgid "<span class=\"fn\">%s</span> <span class=\"says\">says:</span>"
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">dice:</span>"
#: ../functions.php:177
msgid "Your comment is awaiting moderation."
msgstr "Su comentario espera moderación."
#: ../functions.php:184
#, php-format
msgid "%1$s at %2$s"
msgstr "%1$s en %2$s"
#: ../functions.php:184
msgid "(Edit)"
msgstr "(Editar)"
#: ../functions.php:209
msgid "Header Menu"
msgstr "Menú de la cabecera"
#: ../functions.php:210
msgid "Sidebar Menu"
msgstr "Menú de la barra lateral"
#: ../functions.php:211
msgid "Extra Menu"
msgstr "Menú extra"
#: ../functions.php:257
msgid "Widget Area 1"
msgstr "Zona 1 de widgets"
#: ../functions.php:258 ../functions.php:269
msgid "Description for this widget-area..."
msgstr "Descripción para esta zona..."
#: ../functions.php:268
msgid "Widget Area 2"
msgstr "Zona 2 de widgets"
#: ../functions.php:333
msgid "View Article"
msgstr "Ver artículo"
#: ../functions.php:438 ../functions.php:439
msgid "IO Theme Custom Post"
msgstr "Entradas personalizadas de IO Theme"
#: ../functions.php:440
msgid "Add New"
msgstr "Añadir nuevo"
#: ../functions.php:441
msgid "Add New IO Theme Custom Post"
msgstr "Añadir entrada personalizada de IO Theme"
#: ../functions.php:442
msgid "Edit"
msgstr "Editar"
#: ../functions.php:443
msgid "Edit IO Theme Custom Post"
msgstr "Editar entrada personalizada de IO Theme"
#: ../functions.php:444
msgid "New IO Theme Custom Post"
msgstr "Nueva entrada personalizada de IO Theme"
#: ../functions.php:445 ../functions.php:446
msgid "View IO Theme Custom Post"
msgstr "Ver entrada personalizada de IO Theme"
#: ../functions.php:447
msgid "Search IO Theme Custom Post"
msgstr "Buscar entrada personalizada de IO Theme"
#: ../functions.php:448
msgid "No IO Theme Custom Posts found"
msgstr "No se han encontrado entradas personalizadas de IO Theme"
#: ../functions.php:449
msgid "No IO Theme Custom Posts found in Trash"
msgstr ""
"No se han encontrado entradas personalizadas de IO Theme en la papelera"
#: ../index.php:6
msgid "Latest Posts"
msgstr "Últimas entradas"
#: ../search.php:6
#, php-format
msgid "%s Search Results for "
msgstr "%s resultados resultados para"
#: ../searchform.php:5
msgid "Search"
msgstr "Buscar"
#: ../single.php:35
msgid "Tags: "
msgstr "Etiquetas: "
#: ../single.php:37
msgid "Categorised in: "
msgstr "Categorizado en: "
#: ../single.php:39
msgid "This post was written by "
msgstr "Esta entrada fue escrita por"
#: ../tag.php:6
msgid "Tag Archive: "
msgstr "Archivo de etiquetas: "
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr "Para buscar, escribe y presiona Enter"
#~ msgid "%s results for "
#~ msgstr "%s Ergebnisse für "

BIN
languages/fr_FR.mo Executable file

Binary file not shown.

198
languages/fr_FR.po Executable file
View File

@@ -0,0 +1,198 @@
msgid ""
msgstr ""
"Project-Id-Version: IO Theme WordPress Theme\n"
"POT-Creation-Date: 2014-01-08 00:08+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Antoine Lorence <antoine.lorence@gmail.com>\n"
"Language-Team: Kevin Plattret <kevin@plattret.me>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.3\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"
#: ../404.php:9
msgid "Page not found"
msgstr "Page non trouvée"
#: ../404.php:11
msgid "Return home?"
msgstr "Retour à la page d'accueil ?"
#: ../archive.php:6
msgid "Archives"
msgstr "Archives"
#: ../author.php:8
msgid "Author Archives for "
msgstr "Archives de l'auteur "
#: ../author.php:14
msgid "About "
msgstr "À propos"
#: ../author.php:41 ../loop.php:22 ../single.php:27
msgid "Published by"
msgstr "Publié par"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "Leave your thoughts"
msgstr "Laissez vos commentaires"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "1 Comment"
msgstr "1 Commentaire"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "% Comments"
msgstr "% Comentaires"
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
#: ../template-demo.php:31
msgid "Sorry, nothing to display."
msgstr "Désolé, aucun contenu disponible."
#: ../category.php:6
msgid "Categories for "
msgstr "Catégories pour "
#: ../comments.php:3
msgid "Post is password protected. Enter the password to view any comments."
msgstr ""
"Cet article est protégé par un mot de passe. Merci d'entrer le mot de passe "
"pour voir les commentaires."
#: ../comments.php:18
msgid "Comments are closed here."
msgstr "Les commentaires sont fermés."
#: ../footer.php:6
msgid "Powered by"
msgstr "Propulsé par"
#: ../functions.php:133
msgid "Header Menu"
msgstr "Menu d'entête"
#: ../functions.php:134
msgid "Sidebar Menu"
msgstr "Menu de barre latérale"
#: ../functions.php:135
msgid "Extra Menu"
msgstr "Menu supplémentaire"
#: ../functions.php:181
msgid "Widget Area 1"
msgstr "Zone de widget 1"
#: ../functions.php:182 ../functions.php:193
msgid "Description for this widget-area..."
msgstr "Description pour cette zone à widget..."
#: ../functions.php:192
msgid "Widget Area 2"
msgstr "Zone de widget 2"
#: ../functions.php:258
msgid "View Article"
msgstr "Voir l'article"
#: ../functions.php:319
#, php-format
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">dit:</span>"
#: ../functions.php:322
msgid "Your comment is awaiting moderation."
msgstr "Votre commentaire est en attente de modération."
#: ../functions.php:328
#, php-format
msgid "%1$s at %2$s"
msgstr "%1$s à %2$s"
#: ../functions.php:328
msgid "(Edit)"
msgstr "(Éditer)"
#: ../functions.php:411 ../functions.php:412
msgid "IO Theme Custom Post"
msgstr "Article personnalisé"
#: ../functions.php:413
msgid "Add New"
msgstr "Ajouter nouveau"
#: ../functions.php:414
msgid "Add New IO Theme Custom Post"
msgstr "Ajouter un article personnalisé"
#: ../functions.php:415
msgid "Edit"
msgstr "Éditer"
#: ../functions.php:416
msgid "Edit IO Theme Custom Post"
msgstr "Éditer l'article personnalisé"
#: ../functions.php:417
msgid "New IO Theme Custom Post"
msgstr "Nouvel article personnalisé"
#: ../functions.php:418 ../functions.php:419
msgid "View IO Theme Custom Post"
msgstr "Voir l'article personnalisé"
#: ../functions.php:420
msgid "Search IO Theme Custom Post"
msgstr "Rechercher un article personnalisé"
#: ../functions.php:421
msgid "No IO Theme Custom Posts found"
msgstr "Aucun article personnalisé trouvé"
#: ../functions.php:422
msgid "No IO Theme Custom Posts found in Trash"
msgstr "Aucun article personnalisé trouvé dans la corbeille"
#: ../index.php:6
msgid "Latest Posts"
msgstr "Articles récents"
#: ../search.php:6
#, php-format
msgid "%s Search Results for "
msgstr "%s Résultats de recherche pour "
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr "Rechercher"
#: ../searchform.php:4
msgid "Search"
msgstr "Rechercher"
#: ../single.php:33
msgid "Tags: "
msgstr "Tags : "
#: ../single.php:35
msgid "Categorised in: "
msgstr "Classés dans :"
#: ../single.php:37
msgid "This post was written by "
msgstr "Cet article a été écrit par "
#: ../tag.php:6
msgid "Tag Archive: "
msgstr "Archives de tags : "
#~ msgid "%s results for "
#~ msgstr "%s résultats pour "

BIN
languages/hu_HU.mo Executable file

Binary file not shown.

198
languages/hu_HU.po Executable file
View File

@@ -0,0 +1,198 @@
msgid ""
msgstr ""
"Project-Id-Version: IO Theme WordPress Theme\n"
"POT-Creation-Date: 2013-09-18 00:26+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Sallay Arnold <arnold@sallay.info>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.5\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-Basepath: .\n"
"Language: hu_HU\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"
#: ../404.php:9
msgid "Page not found"
msgstr "A keresett oldal nem található"
#: ../404.php:11
msgid "Return home?"
msgstr "Vissza a főoldalra?"
#: ../archive.php:6
msgid "Archives"
msgstr "Archívum"
#: ../author.php:8
msgid "Author Archives for "
msgstr "Szerkesztői archívum - "
#: ../author.php:14
msgid "About "
msgstr "Rólunk "
#: ../author.php:41 ../loop.php:22 ../single.php:27
msgid "Published by"
msgstr "Közzétette "
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "Leave your thoughts"
msgstr "Hozzászólás"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "1 Comment"
msgstr "1 Hozzászólás"
#: ../author.php:42 ../loop.php:23 ../single.php:28
msgid "% Comments"
msgstr "% Hozzászólás"
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
#: ../template-demo.php:31
msgid "Sorry, nothing to display."
msgstr "Nincs tartalom."
#: ../category.php:6
msgid "Categories for"
msgstr "Kategória: "
#: ../comments.php:3
msgid "Post is password protected. Enter the password to view any comments."
msgstr ""
"A tartalom jelszóval védett. A jelszó megadása után minden hozzászólás "
"látható lesz."
#: ../comments.php:18
msgid "Comments are closed here."
msgstr "Hozzászólás zárolva."
#: ../footer.php:6
msgid "Powered by"
msgstr "Motor:"
#: ../functions.php:133
msgid "Header Menu"
msgstr "Fejléc Menü"
#: ../functions.php:134
msgid "Sidebar Menu"
msgstr "Oldalsáv Menü"
#: ../functions.php:135
msgid "Extra Menu"
msgstr "Extra Menü"
#: ../functions.php:181
msgid "Widget Area 1"
msgstr "Widget rész 1"
#: ../functions.php:182 ../functions.php:193
msgid "Description for this widget-area..."
msgstr "A widhet rész leírása..."
#: ../functions.php:192
msgid "Widget Area 2"
msgstr "Widget rész 2"
#: ../functions.php:258
msgid "View Article"
msgstr "Tartalom Megtekintése"
#: ../functions.php:319
#, php-format
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">:</span>"
#: ../functions.php:322
msgid "Your comment is awaiting moderation."
msgstr "A hozzászólás moderálásra vár."
#: ../functions.php:328
#, php-format
msgid "%1$s at %2$s"
msgstr "%1$s - %2$s"
#: ../functions.php:328
msgid "(Edit)"
msgstr "(Szerkesztés)"
#: ../functions.php:411 ../functions.php:412
msgid "IO Theme Custom Post"
msgstr "IO Theme Egyedi Tartalom"
#: ../functions.php:413
msgid "Add New"
msgstr "Új hozzáadása"
#: ../functions.php:414
msgid "Add New IO Theme Custom Post"
msgstr "Új egyedi IO Theme tartalom hozzáadása"
#: ../functions.php:415
msgid "Edit"
msgstr "Szerkesztés"
#: ../functions.php:416
msgid "Edit IO Theme Custom Post"
msgstr "IO Theme egyedi tartalom szerkesztése"
#: ../functions.php:417
msgid "New IO Theme Custom Post"
msgstr "Új IO Theme egyedi tartalom"
#: ../functions.php:418 ../functions.php:419
msgid "View IO Theme Custom Post"
msgstr "IO Theme egyedi tartalom megtekintése"
#: ../functions.php:420
msgid "Search IO Theme Custom Post"
msgstr "IO Theme egyedi tartalomak keresése"
#: ../functions.php:421
msgid "No IO Theme Custom Posts found"
msgstr "Nincs IO Theme egyedi tartalom"
#: ../functions.php:422
msgid "No IO Theme Custom Posts found in Trash"
msgstr "Nincs IO Theme egyedi tartalom a kukában"
#: ../index.php:6
msgid "Latest Posts"
msgstr "Legfrissebb bejegyzések"
#: ../search.php:6
#, php-format
msgid "%s Search Results for "
msgstr "%s Találatok "
#: ../searchform.php:3
msgid "To search, type and hit enter."
msgstr "Keresési feltétel, majd [Enter]."
#: ../searchform.php:4
msgid "Search"
msgstr "Keresés"
#: ../single.php:33
msgid "Tags: "
msgstr "Címkék: "
#: ../single.php:35
msgid "Categorised in: "
msgstr "Kategória: "
#: ../single.php:37
msgid "This post was written by "
msgstr "Írta: "
#: ../tag.php:6
msgid "Tag Archive: "
msgstr "Archívim: "
#~ msgid "%s results for "
#~ msgstr "%s Ergebnisse für "

Some files were not shown because too many files have changed in this diff Show More