-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
63 lines (48 loc) · 2.46 KB
/
header.php
File metadata and controls
63 lines (48 loc) · 2.46 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>iPC Portal</title>
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo get_template_directory_uri() ?>/img/favicon/iPC_4c.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo get_template_directory_uri() ?>/img/favicon/iPC_4c.png">
<?php wp_head(); ?>
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark" role="navigation">
<a class="navbar-brand logo-header" href="<?php echo esc_url(home_url('/')); ?>" rel="Home"></a>
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#whatever" aria-controls="whatever" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<?php
wp_nav_menu( array(
'theme_location' => 'top-menu',
'depth' => 2,
'container' => 'div',
'container_class' => 'collapse navbar-collapse',
'container_id' => 'whatever',
'menu_class' => 'nav navbar-nav',
'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback',
'walker' => new WP_Bootstrap_Navwalker(),
) );
?>
<div class="social-display-header">
<ul>
<li>
<a href="https://twitter.com/iPC_H2020" target="_blank" class="fab fa-twitter"></a>
</li>
<li>
<a href="https://www.linkedin.com/company/ipcproject" target="_blank" class="fab fa-linkedin"> </a>
</li>
<li>
<a href="https://vimeo.com/technikon" target="_blank" class="fab fa-vimeo"> </a>
</li>
<li>
<a href="https://euvation.eu/" target="_blank">
<img src="https://ipc-project.eu/wp-content/themes/ipc_theme/pics/euvation_icon.svg" style="width: 10%; height: 10%">
</a>
</li>
</ul>
</div>
</nav>
</header>