init commit

This commit is contained in:
Yehuda Eisenberg
2020-01-01 22:13:35 +02:00
parent 2c13ea8a3e
commit d6e5daa68c
22 changed files with 1758 additions and 0 deletions

19
inc/head.php Normal file
View File

@@ -0,0 +1,19 @@
<head>
<?php require_once ('config.php')?>
<meta charset="UTF-8">
<title><?php echo $site_name ;?></title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<meta name="description" content="<?php echo "$site_descr"; ?>" />
<meta property="og:type" content="article" />
<meta property="og:title" content="<?php echo "$site_name"; ?>" />
<meta property="og:description" content="<?php echo "$site_descr"; ?>" />
<meta property="og:image" content="assets/fbbanner.png" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" >
<link rel="icon" type="image/png" href="assets/logo-w.png" />
<link rel="stylesheet" href="css/style.css">
</head>
<div class="intro">
<a href="./"><img width="120px" src="assets/logo-b.png" /></a>
<h1><?php echo $site_name; ?></h1>
<p><?php echo "$site_descr"; ?></p>
</div>