Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: pages/legal.html

Issue 29593561: Issue 5961 - Add Imprint page to help.eyeo.com (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Organization schema, convert to html, remove unneeded translations Created Nov. 1, 2017, 9:17 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pages/legal.html
===================================================================
new file mode 100644
--- /dev/null
+++ b/pages/legal.html
@@ -0,0 +1,76 @@
+title=Imprint
+
+<style>
+ hr { margin: 2em 0; }
+
+ @media (min-width: 576px)
+ {
+ hr { margin: 3em 0; }
juliandoucette 2017/11/01 13:09:46 NIT/Suggest: This is too much space?
ire 2017/11/02 09:20:54 Done.
+ }
+
+ .unstyled dt,
+ .unstyled dd
+ {
+ display: inline;
+ }
+
+ .unstyled dd:after
juliandoucette 2017/11/01 13:09:46 NIT/Suggest: Explain this clever solution via comm
ire 2017/11/02 09:20:54 Done :)
+ {
+ content: "";
+ display: block;
+ }
+</style>
+
+<div class="column two-thirds" itemscope itemtype="http://schema.org/Organization">
+
+ <h1>{{ imprint[heading] Imprint }}</h1>
+
+ <hr>
+
+ <h2 itemprop="name">{{ eyeo-gmbh[heading] eyeo GmbH }}</h2>
+
+ <address itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
+ <span itemprop="streetAddress">Lichtstraße 25</span><br>
+ <span itemprop="postalCode">50825</span>
+ <span itemprop="addressLocality">Cologne <br> Germany</span>
+ </address>
+
+ <hr>
+
+ <dl class="unstyled">
+ <dt>{{ imprint-contact-forum-title For suppoprt please goto: }}</dt>
+ <dd><a href="https://adblockplus.org/forum/">{{ imprint-contact-forum-value Adblock Plus Forum }}</a></dd>
+
+ <dt>{{ imprint-contact-email-title Email: }}</dt>
+ <dd itemprop="email"><a href="mailto:support@adblockplus.org">support@adblockplus.org</a></dd>
+
+ <dt>{{ imprint-contact-phone-title Phone: }}</dt>
+ <dd itemprop="telephone">+49 (0)221 / 65028 598</dd>
+
+ <dt>{{ imprint-contact-fax-title Fax: }}</dt>
+ <dd itemprop="faxNumber">+49 (0)221 / 65028 599</dd>
+
+ <dt>{{ imprint-contact-vat-title Ust-IdNr: }}</dt>
+ <dd itemprop="vatID">DE279292414</dd>
+
+ <dt>{{ imprint-contact-district-title District Court: }}</dt>
+ <dd>Köln HRB 73508</dd>
+ </dl>
+
+ <hr>
+
+ <h2>{{ imprint-directors[heading] Managing Directors }}</h2>
+
+ <ul class="unstyled">
+ <li itemprop="founder" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Till Faida</span>
+ </li>
+ <li itemprop="employee" itemscope itemtype="http://schema.org/Person">
ire 2017/11/01 09:19:11 I'm not sure about this, but I couldn't find any o
juliandoucette 2017/11/01 13:09:46 I'm not sure either. My intuition says "founders"
ire 2017/11/02 09:20:54 Don't know why I didn't look this up before, but a
+ <span itemprop="name">Felix Dahlke</span>
+ </li>
+ <li itemprop="employee" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">Steffen Kiedel</span>
+ </li>
+ </ul>
+
+</div>

Powered by Google App Engine
This is Rietveld