First Commit
This commit is contained in:
commit
610aa1e202
4204 changed files with 636764 additions and 0 deletions
49
_static/products/aloe-vera-sos-spray.php
Normal file
49
_static/products/aloe-vera-sos-spray.php
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
|
||||
|
||||
//slug ist die ID sowie link - so werden auch unter assets/images/products/:slug: die Bider abgelegt.
|
||||
$slug = "aloe-vera-sos-spray";
|
||||
|
||||
$headline = 'Aloe Vera SOS-Spray';
|
||||
$copy = '<p>Aloe Vera 90 % - mit Panthenol und Grüner-Tee-Extrakt</p>
|
||||
<ul class="list-unstyled list-icons" style="padding-left: 15px;">
|
||||
<li><i class="fa fa-check text-primary"></i> wirksam bei Sonnenbrand</li>
|
||||
<li><i class="fa fa-check text-primary"></i> bei Insektenstichen und Verbrennungen</li>
|
||||
<li><i class="fa fa-check text-primary"></i> wirkt beruhigend und schmerzlindernd</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-sos-spray-1.jpg',
|
||||
'image' => 'aloe-vera-sos-spray-1.jpg'
|
||||
),
|
||||
array('thumb' => 'aloe-vera-sos-spray-2.jpg',
|
||||
'image' => 'aloe-vera-sos-spray-2.jpg'
|
||||
),
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
$price = '18,90 €';
|
||||
$content = '200 ml';
|
||||
$item_no = '70 10 990';
|
||||
//ablegen unter /assets/images/
|
||||
$icons = "product_icons_1.png";
|
||||
|
||||
$description = '<p>SOS Spray mit 90 % Bio Aloe Vera und Panthenol ist wirksam bei Sonnenbrand, Insektenstichen und Verbrennungen. Es hat juckreizstillende, entzündungshemmende Eigenschaften und wirkt darüber hinaus kühlend, beruhigend, schmerzlindernd und blutstillend bei Brand-, Schürf- und Kratzwunden. Die antioxidativen und antiirritativen Eigenschaften des grünen Tee-Extrakts runden die Wirkung ab. Für Haushalt, Outdoor und Freizeit - auch für die Wundheilung bei Tieren.</p>';
|
||||
$usage = '<p>Aus 20-30 cm Entfernung auf entsprechende Hautstellen aufsprühen und einziehen lassen. Mehrmals wiederholen.</p>';
|
||||
|
||||
$ingredients = '<p>Aloe Barbadensis Gel, Panthenol, Betaine, Camellia Sinensis Leaf Extract, Xanthan Gum, Glycerin, Aqua, Phenoxyethanol, Ethylhexylglycerin, Potassium Sorbate, Sodium Benzoate, Sodium Hydroxide, Citric Acid</p>';
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue