TestDivs: Difference between revisions
Appearance
Content deleted Content added
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
base {{BASEPAGENAME}} name |
base {{BASEPAGENAME}} name |
||
*Deutsch (Standard) |
|||
{{Mailaddress |name=Max Mustermann |street=Hauptstraße |housenumber=12 |zip=12345 |city=Berlin |country=Deutschland}} |
|||
*Englisch |
|||
<templatestyles src="TestDivs/styles.css"/> |
|||
<div class="address-box" itemscope itemtype="https://schema.org"> |
|||
<div class="address-name" itemprop="name">{{{name}}}</div><!-- Name --> |
|||
<div class="address-street" itemprop="streetAddress">{{{strasse}}}</div><!-- Straße --> |
|||
<div class="address-locality"><!-- PLZ und Stadt in einer Zeile --> |
|||
<span class="zip" itemprop="postalCode">{{{plz}}}</span> |
|||
<span class="city" itemprop="addressLocality">{{{stadt}}}</span> |
|||
</div> |
|||
<div class="country" style="text" itemprop="addressCountry"><!-- Land mit speziellem Styling -->{{{land}}}</div> |
|||
</div> |
|||
{{Mailaddress |lang=en |name=John Doe |street=Main St |housenumber=456 |zip=SW1A 1AA |city=London |country=United Kingdom}} |
|||
{{TestDivs |
|||
| name = Max Mustermann |
|||
| strasse = Beispielstraße 42 |
|||
| plz = 10115 |
|||
| stadt = Berlin |
|||
| land = Deutschland |
|||
}} |
|||