blob: 036fc3394b57a5e5dc57712139696f16ff47b87f (
plain) (
blame)
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
67
68
69
70
71
72
73
|
<?php
/**
* The header for Astra Theme.
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Astra
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?><!DOCTYPE html>
<?php astra_html_before(); ?>
<html <?php language_attributes(); ?>>
<head>
<?php astra_head_top(); ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
<?php astra_head_bottom(); ?>
<!-- Favicon -->
<link href="https://www.adelielinux.org/assets/images/icons/gen_polyguin_color_favicon.ico" rel="shortcut icon">
<!-- CSS -->
<link href="https://www.adelielinux.org/assets/plugins/bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/plugins/owl-carousel/owl.carousel.min.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/plugins/owl-carousel/owl.theme.default.min.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/plugins/magnific-popup/magnific-popup.min.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/plugins/sal/sal.min.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/css/theme.css" rel="stylesheet">
<!-- Fonts/Icons -->
<link href="https://www.adelielinux.org/assets/plugins/font-awesome/css/all.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/plugins/themify/themify-icons.min.css" rel="stylesheet">
<link href="https://www.adelielinux.org/assets/plugins/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
<!-- Blog Overrides -->
<style>
.entry-content a { color: #007BFF; }
</style>
</head>
<body <?php astra_schema_body(); ?> <?php body_class(); ?>>
<?php astra_body_top(); ?>
<?php wp_body_open(); ?>
<div
<?php
echo astra_attr(
'site',
array(
'id' => 'page',
'class' => 'hfeed site',
)
);
?>
>
<a class="skip-link screen-reader-text" href="#content"><?php echo esc_html( astra_default_strings( 'string-header-skip-link', false ) ); ?></a>
<?php
astra_header_before();
astra_header();
astra_header_after();
astra_content_before();
?>
<div id="content" class="site-content">
<div class="ast-container">
<?php astra_content_top(); ?>
|