meta & title tags
This commit is contained in:
parent
add18f6aff
commit
f0bbad0e57
@ -1,21 +1,14 @@
|
||||
<?php
|
||||
|
||||
class default_anfahrt implements SYSTEM\PAGE\Page {
|
||||
public function html() {
|
||||
return SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_anfahrt/tpl/default_anfahrt.tpl'))->SERVERPATH());}
|
||||
|
||||
public static function css() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function js() {
|
||||
public static function css(){return array();}
|
||||
public static function js(){
|
||||
return array(new PPAGE('default_anfahrt/js/default_anfahrt.js'));}
|
||||
|
||||
public static function meta() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public static function title() {
|
||||
return NULL;
|
||||
}
|
||||
public static function title(){
|
||||
return \SYSTEM\PAGE\text::get('title_anfahrt');}
|
||||
public static function meta(){
|
||||
return \SYSTEM\PAGE\text::tag('meta_anfahrt');}
|
||||
}
|
||||
@ -4,18 +4,12 @@ class default_galerie implements SYSTEM\PAGE\Page {
|
||||
$vars = array('default_gallery' => saimod_webcraft_gallery::getGalleryFlexslider(1));
|
||||
return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_galerie/tpl/default_galerie.tpl'))->SERVERPATH(), $vars);}
|
||||
|
||||
public static function css() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function css(){return array();}
|
||||
public static function js(){
|
||||
return array(new PPAGE('default_galerie/js/default_galerie.js'));}
|
||||
|
||||
public static function meta() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public static function title() {
|
||||
return NULL;
|
||||
}
|
||||
public static function title(){
|
||||
return \SYSTEM\PAGE\text::get('title_galerie');}
|
||||
public static function meta(){
|
||||
return \SYSTEM\PAGE\text::tag('meta_galerie');}
|
||||
}
|
||||
@ -1,23 +1,14 @@
|
||||
<?php
|
||||
|
||||
class default_impressum implements SYSTEM\PAGE\Page {
|
||||
public function html() {
|
||||
$text = \SYSTEM\PAGE\text::get('impressum');
|
||||
return $text;}
|
||||
|
||||
public static function css() {
|
||||
return array();
|
||||
}
|
||||
public static function css(){return array();}
|
||||
public static function js(){return array();}
|
||||
|
||||
public static function js() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function meta() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public static function title() {
|
||||
return NULL;
|
||||
}
|
||||
public static function title(){
|
||||
return \SYSTEM\PAGE\text::get('title_impressum');}
|
||||
public static function meta(){
|
||||
return \SYSTEM\PAGE\text::tag('meta_impressum');}
|
||||
}
|
||||
@ -3,10 +3,12 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Herzlich Willkommen bei Friseurteam Angelika Gabriel - Ihr Haarspezialist an der Hauptstraße in Zwingenberg an der Begrstraße.">
|
||||
<meta name="keywords" content="Friseur, Friseurteam, Zwingenberg, Hair, Styling">
|
||||
<meta name="author" content="Webcraft-Media.de">
|
||||
<title>${page_title}</title>
|
||||
<meta name="fragment" content="!">
|
||||
<meta property="og:url" content="http://www.friseur-zwingenberg.de"/>
|
||||
<meta name="description" content="${meta_start_description}">
|
||||
<meta name="keywords" content="${meta_start_keywords}">
|
||||
<meta name="author" content="${meta_start_author}">
|
||||
<title>${title_start}</title>
|
||||
<style>
|
||||
@font-face{font-family: "HEATHER";src: url("./files/page/HEATHER_.TTF");}
|
||||
body{background: url('./files/page/background_friseur2.png') no-repeat center center fixed; background-size: cover;}
|
||||
|
||||
@ -5,19 +5,11 @@ class default_preise implements SYSTEM\PAGE\Page {
|
||||
$vars = \SYSTEM\PAGE\text::tag('friseurteam');
|
||||
return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_preise/tpl/default_preise.tpl'))->SERVERPATH(), $vars);}
|
||||
|
||||
public static function css() {
|
||||
return array();
|
||||
}
|
||||
public static function css(){return array();}
|
||||
public static function js(){return array();}
|
||||
|
||||
public static function js() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function meta() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public static function title() {
|
||||
return NULL;
|
||||
}
|
||||
public static function title(){
|
||||
return \SYSTEM\PAGE\text::get('title_preise');}
|
||||
public static function meta(){
|
||||
return \SYSTEM\PAGE\text::tag('meta_preise');}
|
||||
}
|
||||
@ -4,20 +4,11 @@ class default_start implements SYSTEM\PAGE\Page {
|
||||
$vars = \SYSTEM\PAGE\text::tag('friseurteam');
|
||||
return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_start/tpl/default_start.tpl'))->SERVERPATH(), $vars);}
|
||||
|
||||
public static function css() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function js() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function meta() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public static function title() {
|
||||
return NULL;
|
||||
}
|
||||
public static function css(){return array();}
|
||||
public static function js(){return array();}
|
||||
|
||||
public static function title(){
|
||||
return \SYSTEM\PAGE\text::get('title_start');}
|
||||
public static function meta(){
|
||||
return \SYSTEM\PAGE\text::tag('meta_start');}
|
||||
}
|
||||
@ -1,22 +1,15 @@
|
||||
<?php
|
||||
|
||||
class default_team implements SYSTEM\PAGE\Page {
|
||||
public function html() {
|
||||
$vars = array('default_gallery' => saimod_webcraft_gallery::getGalleryFlexslider(1));
|
||||
return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_team/tpl/default_team.tpl'))->SERVERPATH(), $vars);}
|
||||
|
||||
public static function css() {
|
||||
return array();
|
||||
}
|
||||
|
||||
public static function js() {
|
||||
public static function css(){return array();}
|
||||
public static function js(){
|
||||
return array(new PPAGE('default_team/js/default_team.js'));}
|
||||
|
||||
public static function meta() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
public static function title() {
|
||||
return NULL;
|
||||
}
|
||||
public static function title(){
|
||||
return \SYSTEM\PAGE\text::get('title_team');}
|
||||
public static function meta(){
|
||||
return \SYSTEM\PAGE\text::tag('meta_team');}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user