copyright text footer
This commit is contained in:
parent
cfe79db5b1
commit
8f0051ee22
4 changed files with 79 additions and 72 deletions
|
|
@ -304,6 +304,8 @@
|
|||
.footer-bottom .content-wrap {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer-bottom .content-wrap ul {
|
||||
|
|
@ -333,3 +335,7 @@
|
|||
.footer-bottom .content-wrap ul a:hover {
|
||||
color: #808080;
|
||||
}
|
||||
|
||||
.footer-bottom .content-wrap .copyright {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,82 +1,63 @@
|
|||
<footer>
|
||||
|
||||
|
||||
<section class="meta-footer" id="c105">
|
||||
<div class="content-wrap">
|
||||
|
||||
|
||||
<p class="meta-footer-logo-text">Karlsruher Institut für Technologie (KIT) − Abteilung Berufliche Ausbildung</p>
|
||||
<p class="meta-footer-logo-text">
|
||||
saai | Archiv für Architektur und Ingenieurbau
|
||||
</p>
|
||||
|
||||
<div class="container container-2-cols-2-thirds-1-third">
|
||||
<div class="column">
|
||||
<div class="meta-footer-contact-entities">
|
||||
|
||||
|
||||
<div class="meta-footer-contact-entity">
|
||||
<div class="meta-footer-contact-entity-head">
|
||||
<span class="meta-footer-contact-entity-head-icon"></span>
|
||||
<h3>Sekretariat Campus Süd</h3>
|
||||
<h3>Sekretariat</h3>
|
||||
</div>
|
||||
<div class="meta-footer-contact-entity-body" style="">
|
||||
<p>
|
||||
Kaiserstraße 12<br>
|
||||
76131 Karlsruhe
|
||||
Astrid Piaskowy, Claudia Iordache<br>
|
||||
Kaiserstraße 8<br>
|
||||
D-76131 Karlsruhe
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
<span class="phone">
|
||||
<a href="tel:+4972160845321">
|
||||
0721 608-45321
|
||||
<a href="tel://+4972160844376">
|
||||
+49 721 608-44376
|
||||
</a>
|
||||
</span><br>
|
||||
|
||||
|
||||
<span class="email"><a href="mailto:info@ausbildung.kit.edu">info@ausbildung.kit.edu</a></span>
|
||||
|
||||
</span>
|
||||
<br>
|
||||
<span class="email">
|
||||
<a href="mailto://mail@saai.kit.edu">
|
||||
mail@saai.kit.edu
|
||||
</a>
|
||||
</span>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="meta-footer-contact-entity">
|
||||
<div class="meta-footer-contact-entity-head">
|
||||
<span class="meta-footer-contact-entity-head-icon"></span>
|
||||
<h3> Leitung Berufliche Ausbildung</h3>
|
||||
<h3> Leitung</h3>
|
||||
</div>
|
||||
<div class="meta-footer-contact-entity-body" style="">
|
||||
<p>
|
||||
Andreas Schmitt<br>
|
||||
|
||||
Prof. Dr. Georg Vrachliotis<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="meta-footer-contact-entity">
|
||||
<div class="meta-footer-contact-entity-head">
|
||||
<span class="meta-footer-contact-entity-head-icon"></span>
|
||||
<h3>Sekretariat Campus Nord </h3>
|
||||
<h3>Öffnungszeiten</h3>
|
||||
</div>
|
||||
<div class="meta-footer-contact-entity-body" style="">
|
||||
<p>
|
||||
Hermann-von-Helmholtz-Platz 1<br>
|
||||
76344 Eggenstein-Leopoldshafen
|
||||
Nach Vereinbarung<br>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
<span class="phone">
|
||||
<a href="tel:+4972160822546">
|
||||
0721 608-22546
|
||||
</a>
|
||||
</span><br>
|
||||
|
||||
|
||||
<span class="email"><a href="mailto:info@ausbildung.kit.edu">info@ausbildung.kit.edu</a></span>
|
||||
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -84,10 +65,10 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="column">
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="meta-footer-slogan">
|
||||
<p>KIT − Die Forschungsuniversität in der Helmholtz-Gemeinschaft</p>
|
||||
|
|
|
|||
|
|
@ -177,6 +177,23 @@ function theme_customize_register( $wp_customize ) {
|
|||
)
|
||||
) );
|
||||
|
||||
$wp_customize->add_setting( 'kit_copyrighttext', array(
|
||||
'default' => '',
|
||||
'type' => 'option',
|
||||
'capability' => 'edit_theme_options'
|
||||
),
|
||||
);
|
||||
|
||||
$wp_customize->add_control( new WP_Customize_Control(
|
||||
$wp_customize, 'sidenav_copyrighttext', array(
|
||||
'label' => __( 'Copyright text', 'kit' ),
|
||||
'description' => __( 'Displayed in the footer', 'kit' ),
|
||||
'settings' => 'kit_copyrighttext',
|
||||
'section' => 'title_tagline',
|
||||
'type' => 'text',
|
||||
)
|
||||
) );
|
||||
|
||||
}
|
||||
|
||||
add_action( 'customize_register', 'theme_customize_register' );
|
||||
|
|
|
|||
|
|
@ -6,5 +6,8 @@
|
|||
'container' => 'false'
|
||||
) );
|
||||
?>
|
||||
<p class="copyright">
|
||||
<?php echo get_option('kit_copyrighttext'); ?>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue