add favicon

This commit is contained in:
Jonas Heinrich 2020-04-26 18:28:37 +02:00
parent 4c62fafeb9
commit c9497a72df
6 changed files with 66 additions and 68 deletions

View file

@ -5,7 +5,7 @@
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=EDGE"> <meta http-equiv="X-UA-Compatible" content="IE=EDGE">
<meta charset="utf-8"> <meta charset="utf-8">
<title><?php bloginfo('name'); ?><?php wp_title( '|', true, 'left' ); ?></title> <title><?php wp_title( '|', true, 'right' ); ?><?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>"> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<?php wp_head(); ?> <?php wp_head(); ?>
<meta name="robots" content="INDEX, FOLLOW"> <meta name="robots" content="INDEX, FOLLOW">

BIN
kit/img/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

BIN
kit/img/favicon-196x196.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
kit/img/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 995 B

BIN
kit/img/favicon-96x96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -11,11 +11,9 @@ get_header();
<div class="headline-element" id="c145"> <div class="headline-element" id="c145">
<h2>Suche</h2> <h2><?php _e('Search'); ?></h2>
</div> </div>
<div id="c139" class="frame frame-default frame-type-list frame-layout-0"> <div id="c139" class="frame frame-default frame-type-list frame-layout-0">
<div class="tx-indexedsearch"> <div class="tx-indexedsearch">
@ -29,12 +27,12 @@ get_header();
</div> </div>
<fieldset> <fieldset>
<div class="tx-indexedsearch-form"> <div class="tx-indexedsearch-form">
<label for="tx-indexedsearch-searchbox-sword">Suchen nach:</label> <label for="tx-indexedsearch-searchbox-sword"><?php _e('Search for:'); ?></label>
<input class="tx-indexedsearch-searchbox-sword" type="text" name="s" value="<?php the_search_query(); ?>" /> <input class="tx-indexedsearch-searchbox-sword" type="text" name="s" value="<?php the_search_query(); ?>" />
</div> </div>
<div class="tx-indexedsearch-search-submit"> <div class="tx-indexedsearch-search-submit">
<button type="submit" class="tx-indexedsearch-searchbox-button" /> <button type="submit" class="tx-indexedsearch-searchbox-button" />
<span>Suchen</span> <span><?php _e('Search'); ?></span>
</button> </button>
</div> </div>
</fieldset> </fieldset>
@ -47,16 +45,16 @@ get_header();
<div class="tx-indexedsearch-browsebox"> <div class="tx-indexedsearch-browsebox">
<p> <p>
<?php <?php
global $wp_query; global $wp_query;
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$post_count_start = (($paged -1) * 10) + 1; $post_count_start = (($paged -1) * 10) + 1;
$post_count_end = ((($paged -1) * 10) + $wp_query->post_count); $post_count_end = ((($paged -1) * 10) + $wp_query->post_count);
echo "Anzeige der Ergebnisse <strong>" . $post_count_start . " bis " . $post_count_end . "</strong> von insgesamt <strong>" . $wp_query->found_posts. "</strong>"; _e("Showing results from <strong>" . $post_count_start . " to " . $post_count_end . "</strong>. Total results: <strong>" . $wp_query->found_posts. "</strong>");
?> ?>
</p> </p>
<!-- render the anchor-links to the sections inside the displayed result rows -->
<div class="tx-indexedsearch-browsebox"> <div class="tx-indexedsearch-browsebox">
<?php the_posts_pagination( array( <?php the_posts_pagination( array(
@ -89,8 +87,8 @@ get_header();
<div class="tx-indexedsearch-browsebox"> <div class="tx-indexedsearch-browsebox">
<?php the_posts_pagination( array( <?php the_posts_pagination( array(
'mid_size' => 2, 'mid_size' => 2,
'prev_text' => __( '< Zurück', 'textdomain' ), 'prev_text' => __( '< Zurück'),
'next_text' => __( 'Nächste >', 'textdomain' ), 'next_text' => __( 'Nächste >'),
'type' => 'list', 'type' => 'list',
'before_page_number' => 'Seite ', 'before_page_number' => 'Seite ',
) ); ?> ) ); ?>