-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.php
executable file
·39 lines (32 loc) · 977 Bytes
/
base.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<?php
if (locate_template('templates/pre-header.php') != '') {
get_template_part('templates/pre-header');
}
do_action('get_header' , $IDIES_Web->header_file);
get_template_part('templates/'.$IDIES_Web->header_file);
?>
<?php if (is_front_page()) : ?>
<div class="wrap container-fluid" role="document">
<?php else : ?>
<div class="wrap container" role="document">
<?php endif; ?>
<div class="content row">
<main class="main" role="main">
<?php include roots_template_path(); ?>
</main><!-- /.main -->
<?php if (roots_display_sidebar()) : ?>
<aside class="sidebar" role="complementary">
<?php include roots_sidebar_path(); ?>
</aside><!-- /.sidebar -->
<?php endif; ?>
</div><!-- /.content -->
</div><!-- /.wrap -->
<?php
get_template_part('templates/'.$IDIES_Web->footer_file);
get_template_part('templates/sciserver_login');
?>
<?php wp_footer(); ?>
</body>
</html>