This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathheader-conference.php
39 lines (35 loc) · 1.77 KB
/
header-conference.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
/**
* The header for Conference subpage
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @package WordPress
* @subpackage ownCloud
* @since 1.0
* @version 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js no-svg">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,600|Open+Sans+Condensed:300" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css_fixed/materialize.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<?php wp_head(); ?>
</head>
<body <?php echo body_class(); ?>>
<header class="main">
<div class="container d-flex justify-content-between">
<div class="logo">
<a class="d-flex align-items-center" href="<?php echo get_home_url(); ?>"><img src="<?php echo get_template_directory_uri(); ?>/img/owncloud-org-logo.svg" alt="ownCloud community logo" /></a>
</div>
</div>
</header>