Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xwolfde committed Apr 30, 2015
1 parent b7bc48b commit 8a130fc
Show file tree
Hide file tree
Showing 193 changed files with 36,503 additions and 0 deletions.
57 changes: 57 additions & 0 deletions 401.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage FAU
* @since FAU 1.0
*/

global $options;
get_header(); ?>


<section id="hero" class="hero-small">
<div class="container">
<div class="row">
<div class="span12">
<div class="breadcrumbs">
<a href="<?php echo fau_esc_url( home_url( '/' ) ); ?>"><?php echo $options['breadcrumb_root']; ?></a>
</div>

<div class="hero-meta-portal">
401
</div>
</div>
</div>
<div class="row">
<div class="span6">
<h1><?php _e('Anmeldung fehlgeschlagen','fau'); ?></h1>
</div>
</div>
</div>
</section>


<section id="content">
<div class="container">

<div class="row">
<div class="span6">
<p class="hinweis">
<strong><?php _e('Es tut uns leid.','fau'); ?></strong><br>
<?php _e('Leider ist Ihre Anmeldung fehlgeschlagen.','fau'); ?>
</p>
<div class="row">
<div class="span4 offset2"><img src="<?php echo fau_get_template_uri(); ?>/img/friedrich-alexander.gif" alt="" class="error-404-persons"></div>
</div>
</div>
</div>

<?php get_template_part('search', 'helper'); ?>

</div>
<?php get_template_part('footer', 'social'); ?>
</section>

<?php get_footer(); ?>
58 changes: 58 additions & 0 deletions 403.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage FAU
* @since FAU 1.0
*/

global $options;
get_header();
?>


<section id="hero" class="hero-small">
<div class="container">
<div class="row">
<div class="span12">
<div class="breadcrumbs">
<a href="<?php echo fau_esc_url( home_url( '/' ) ); ?>"><?php echo $options['breadcrumb_root']; ?></a>
</div>

<div class="hero-meta-portal">
403
</div>
</div>
</div>
<div class="row">
<div class="span6">
<h1><?php _e('Zugriff nicht gestattet','fau'); ?></h1>
</div>
</div>
</div>
</section>


<section id="content">
<div class="container">

<div class="row">
<div class="span6">
<p class="hinweis">
<strong><?php _e('Es tut uns leid.','fau'); ?></strong><br>
<?php _e('Leider dürfen Sie auf diese Seite nicht zugreifen.','fau'); ?>
</p>
<div class="row">
<div class="span4 offset2"><img src="<?php echo fau_get_template_uri(); ?>/img/friedrich-alexander.gif" alt="" class="error-404-persons"></div>
</div>
</div>
</div>

<?php get_template_part('search', 'helper'); ?>

</div>
<?php get_template_part('footer', 'social'); ?>
</section>

<?php get_footer(); ?>
75 changes: 75 additions & 0 deletions 404.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage FAU
* @since FAU 1.0
*/

global $options;
get_header();
?>


<section id="hero" class="hero-small">
<div class="container">
<div class="row">
<div class="span12">
<div class="breadcrumbs">
<a href="<?php echo fau_esc_url( home_url( '/' ) ); ?>"><?php echo $options['breadcrumb_root']; ?></a>
</div>

<div class="hero-meta-portal">
404
</div>
</div>
</div>
<div class="row">
<div class="span6">
<h1><?php _e('Seite nicht gefunden','fau'); ?></h1>
</div>
</div>
</div>
</section>


<section id="content">
<div class="container">

<div class="row">
<div class="span6">
<p class="hinweis">
<strong><?php _e('Es tut uns leid.','fau'); ?></strong><br>
<?php _e('Die von Ihnen aufgerufene Seite existiert nicht oder ihre Adresse hat sich durch Änderungen der Seiten geändert.','fau'); ?>
</p>
<div class="row">
<div class="span4 offset2"><img src="<?php echo fau_get_template_uri(); ?>/img/friedrich-alexander.gif" alt="" class="error-404-persons"></div>
</div>
</div>
<div class="span6">
<form role="search" method="get" class="searchform searchform-content" action="<?php echo home_url( '/' )?>">
<h3><?php _e('Vielleicht hilft Ihnen die Suche:','fau'); ?></h3>
<?php

$uri = esc_url($_SERVER['REQUEST_URI']);
$uri = str_replace('/', ' ', $uri);

?>
<label class="unsichtbar" for="suchmaske-error"><?php _e('Geben Sie hier den Suchbegriff ein','fau'); ?></label>
<input type="text" value="<?php echo $uri ?>" name="s" id="suchmaske-error" placeholder="<?php _e('Suchen nach...','fau'); ?>">
<input type="submit" id="searchsubmit" value="<?php _e('Finden','fau'); ?>">
</form>
</div>
</div>



<?php get_template_part('search', 'helper'); ?>


</div>
<?php get_template_part('footer', 'social'); ?>
</section>

<?php get_footer(); ?>
48 changes: 48 additions & 0 deletions comments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
global $options;

if ( post_password_required() ) : ?>
<p><?php _e("Dieser Eintrag ist mit einem Passwort geschützt. Bitte geben Sie das Passwort ein, um ihn freizuschalten.", 'fau'); ?></p>
<?php return;
endif;
if ( have_comments() ) : ?>
<h2 id="comments-title"><?php _e("Kommentare", 'fau'); ?></h2>

<?php if (isset($options['advanced_comments_disclaimer'])) {
echo '<p class="attention">'.$options['advanced_comments_disclaimer'] .'</p>'."\n";
} ?>

<p>
<?php printf( _n( 'Ein Kommentar zu <em>"%2$s"</em>', '%1$s Kommentare zu <em>"%2$s"</em>', get_comments_number(), 'fau' ), number_format_i18n( get_comments_number() ), '' . get_the_title() . '' ); ?>:
</p>
<?php
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
previous_comments_link( '&larr; '. __( 'Ältere Kommentare', 'fau' ) );
next_comments_link( __( 'Neuere Kommentare;', 'fau' ).' &rarr' );
endif; ?>
<ul>
<?php wp_list_comments( array( 'style' => 'ul', 'callback' => 'fau_comment' ) ); ?>
</ul>

<?php
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
previous_comments_link( '&larr; '.__( 'Ältere Kommentare', 'fau' ) );
next_comments_link( __( 'Neuere Kommentare', 'fau' ). ' &rarr;' );
endif;
if ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
<p><?php _e("Eine Kommentierung ist nicht mehr möglich.", 'fau'); ?></p>
<?php
endif;
endif;

if (!empty($options['advanced_comments_notes_before'])) {
$notes = '<p class="comment-notes">'.$options['advanced_comments_notes_before'].'</p>';

comment_form( array( 'comment_notes_before' => $notes) );
} else {
comment_form();
}



?>
2 changes: 2 additions & 0 deletions css/admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions css/admin.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8a130fc

Please sign in to comment.