2015-04-23 10:24:50 +02:00
< ? php $this -> layout ( 'theme::layout/00_layout' ) ?>
< div class = " navbar navbar-fixed-top hidden-print " >
< div class = " container " >
2015-04-27 23:18:00 +02:00
< ? php $this -> insert ( 'theme::partials/navbar_content' , [ 'params' => $params ]); ?>
2015-04-23 10:24:50 +02:00
</ div >
</ div >
< ? php if ( $params [ 'repo' ]) { ?>
< a href = " https://github.com/<?php echo $params['repo'] ; ?> " target = " _blank " id = " github-ribbon " class = " hidden-print " >< img src = " https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png " alt = " Fork me on GitHub " ></ a >
< ? php } ?>
< div class = " homepage-hero well container-fluid " >
< div class = " container " >
< div class = " row " >
< div class = " text-center col-sm-12 " >
< ? php if ( $params [ 'tagline' ]) echo '<h2>' . $params [ 'tagline' ] . '</h2>' ; ?>
</ div >
</ div >
< div class = " row " >
< div class = " col-sm-10 col-sm-offset-1 " >
< ? php if ( $params [ 'image' ]) echo '<img class="homepage-image img-responsive" src="' . $params [ 'image' ] . '" alt="' . $params [ 'title' ] . '">' ; ?>
</ div >
</ div >
</ div >
</ div >
< div class = " hero-buttons container-fluid " >
< div class = " container " >
< div class = " row " >
< div class = " text-center col-sm-12 " >
< ? php
if ( $params [ 'repo' ]) echo '<a href="https://github.com/' . $params [ 'repo' ] . '" class="btn btn-secondary btn-hero">View On GitHub</a>' ;
foreach ( $page [ 'entry_page' ] as $key => $node ) echo '<a href="' . $node . '" class="btn btn-primary btn-hero">' . $key . '</a>' ;
?>
</ div >
</ div >
</ div >
</ div >
< div class = " homepage-content container-fluid " >
< div class = " container " >
< div class = " row " >
< div class = " col-sm-10 col-sm-offset-1 " >
< ? php echo $page [ 'content' ]; ?>
</ div >
</ div >
</ div >
</ div >
< div class = " homepage-footer well container-fluid " >
< div class = " container " >
< div class = " row " >
< div class = " col-sm-5 col-sm-offset-1 " >
< ? php if ( ! empty ( $params [ 'links' ])) { ?>
< ul class = " footer-nav " >
< ? php foreach ( $params [ 'links' ] as $name => $url ) echo '<li><a href="' . $url . '" target="_blank">' . $name . '</a></li>' ; ?>
</ ul >
< ? php } ?>
</ div >
< div class = " col-sm-5 " >
< div class = " pull-right " >
< ? php
if ( ! empty ( $params [ 'twitter' ])) {
foreach ( $params [ 'twitter' ] as $handle ) {
?>
< div class = " twitter " >
< iframe allowtransparency = " true " frameborder = " 0 " scrolling = " no " style = " width:162px; height:20px; " src = " https://platform.twitter.com/widgets/follow_button.html?screen_name=<?php echo $handle ;?>&show_count=false " ></ iframe >
</ div >
< ? php
}
}
?>
</ div >
</ div >
</ div >
</ div >
</ div >