50 lines
2 KiB
PHP
50 lines
2 KiB
PHP
<?php
|
|
|
|
|
|
//slug ist die ID sowie link - so werden auch unter assets/images/products/:slug: die Bider abgelegt.
|
|
$slug = "aloe-vera-emulsion";
|
|
|
|
$headline = 'Aloe Vera Emulsion';
|
|
$copy = '<p>Aloe Vera mit Jojobaöl und Mandelöl</p>
|
|
<ul class="list-unstyled list-icons" style="padding-left: 15px;">
|
|
<li><i class="fa fa-check text-primary"></i> gegen trockene und spröde Haut</li>
|
|
<li><i class="fa fa-check text-primary"></i> wirkt beruhigend</li>
|
|
<li><i class="fa fa-check text-primary"></i> pflegt schuppige Haut</li>
|
|
<li><i class="fa fa-check text-primary"></i> verbessert das Feuchthaltvermögen</li>
|
|
</ul>
|
|
';
|
|
|
|
// produktbilder
|
|
//ablegen unter assets/images/products/:slug:/:name:.jpg
|
|
//vorschaubild 150x150px (thumb)
|
|
//großes Bilder 1000x1500px (image)
|
|
|
|
/*
|
|
jedes Bild bekommt ein array(), mit thumb und image,
|
|
wenn mehr einfach ein array(), hinzufügen, wenn weniger dann entfernen.
|
|
Struktur muss sein array( array('thumb' => ':pfad:' , 'image' => ':pfad:' ), array('thumb' => ':pfad:' , 'image' => ':pfad:' ), ... );
|
|
*/
|
|
$images = array(
|
|
array('thumb' => 'aloe-vera-emulsion-1.jpg',
|
|
'image' => 'aloe-vera-emulsion-1.jpg'
|
|
),
|
|
array('thumb' => 'aloe-vera-emulsion-2.jpg',
|
|
'image' => 'aloe-vera-emulsion-2.jpg'
|
|
),
|
|
);
|
|
|
|
|
|
|
|
|
|
$price = '18,90 €';
|
|
$content = '200ml';
|
|
$item_no = '70 10 450';
|
|
//ablegen unter /assets/images/
|
|
$icons = "product_icons_1.png";
|
|
|
|
$description = '<p>Diese leichte Emulsion wirkt beruhigend bei beanspruchter Haut. Durch die wertvollen Inhaltsstoffe von Jojobaöl und Vitamin E eignet sie sich die Emulsion hervorragend für sehr trockene und spröde Haut. Auch anwendbar z.B. bei einem Fersenriss. Nach der Sauna, Dusche oder Bad eine wohltuende Pflege. Vor Gebrauch schütteln!</p>';
|
|
$usage = '<p>Je nach Bedarf auf die Haut auftragen.</p>';
|
|
|
|
$ingredients = '<p>Prunus Amygdalus Dulcis Oil, Aloe Barbadensis Gel, Laureth-3, Simmondsia Chinensis Seed Oil, Tocopheryl Acetate, Sodium Benzoate, Potassium Sorbate, Citric Acid, Benzyl Alcohol, Benzoic Acid, Tocopherol, Parfum, D-Limonene, Linalool.</p>';
|
|
|
|
?>
|