-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
66 lines (64 loc) · 3.47 KB
/
header.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>
<?php
global $page, $paged;
wp_title( '|', true, 'right' );
bloginfo( 'name' );
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( _( 'Page %s', 'sipsi' ), max( $paged, $page ) );
?>
</title>
<meta charset="UTF-8">
<meta name="description" content="Mustafa Akgül Özgür Yazılım 2025 Kış Kampı, Anadolu Üniversitesi Yunus Emre Kampüsü’nde ">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="<?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?>" />
<meta property="twitter:description" content="Mustafa Akgül Özgür Yazılım 2025 Kış Kampı, Anadolu Üniversitesi Yunus Emre Kampüsü’nde " />
<meta property="twitter:image" content="<?php bloginfo("template_url"); ?>/assets/images/oyk2025kis-logo-kare.png?2025-kis" />
<meta property="twitter:url" content="<?=home_url( $wp->request )?>" />
<meta property="twitter:domain" content="kamp.linux.org.tr">
<meta property="og:type" content="website">
<meta property="og:title" content="<?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?>" />
<meta property="og:description" content="Mustafa Akgül Özgür Yazılım 2025 Kış Kampı, Anadolu Üniversitesi Yunus Emre Kampüsü’nde " />
<meta property="og:url" content="<?=home_url( $wp->request )?>" />
<meta property="og:image" content="<?php bloginfo("template_url"); ?>/assets/images/oyk2025kis-logo-kare.png?2025-kis" />
<meta content="width=device-width,initial-scale=1" name="viewport">
<link rel="stylesheet" href="<?php bloginfo("template_url"); ?>/assets/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php bloginfo("template_url"); ?>/assets/css/font-awesome.min.css">
<link rel="stylesheet" href="<?php bloginfo("template_url"); ?>/assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="<?php bloginfo("template_url"); ?>/assets/css/jquery.fancybox.min.css" />
<link rel="stylesheet" href="<?php bloginfo("template_url"); ?>/assets/css/main.min.css?2025-kis-v1">
<link rel="stylesheet" href="<?php bloginfo("template_url"); ?>/style.css">
<link rel="icon" type="image/png" href="<?php bloginfo("template_url"); ?>/assets/images/favicon.png" />
<?php wp_head(); ?>
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="header-logo col-md-6 col-xs-12">
<a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo("template_url"); ?>/assets/images/oyk2025kis-logo.png?2025-kis" width="429" alt=""></a>
</div>
<div class="header-logo-list col-md-6 col-xs-12">
<div class="pull-right pull-right-xs">
<a href="http://www.lkd.org.tr/" target="_blank">
<img src="<?php bloginfo("template_url"); ?>/assets/images/tlkd.png?v2" height="100" width="100" alt="">
</a>
<a href="http://www.anadolu.edu.tr/" target="_blank">
<img src="<?php bloginfo("template_url"); ?>/assets/images/anadolu.png?v3" height="100" width="100" alt="">
</a>
</div>
</div>
</div>
</div>
</header>
<nav class="header-menu hidden-xs">
<div class="container">
<?php wp_nav_menu( array( 'theme_location' => 'menu', 'items_wrap' => '<ul id="menu-header">%3$s</ul>', 'menu_id' => 'menu-header')); ?>
</div>
</nav>