I obviously forgot to add some files to repository which broke templation.
This commit is contained in:
parent
78d2ccdbc6
commit
54e43ba175
|
@ -35,17 +35,58 @@
|
|||
<h1>Artikel</h1>
|
||||
<article>
|
||||
<header>
|
||||
<h1>This is the first article</h1>
|
||||
<h1>Das ist der zweite Artikel</h1>
|
||||
<dl>
|
||||
<dt>Autor</dt><dd>homer77</dd>
|
||||
<dt>Erstellt am</dt><dd>03/01/15</dd>
|
||||
<dt>Zuletzt geändert</dt><dd>03/01/15</dd>
|
||||
<dt>Erstellt am</dt><dd>02/24/15 21:19:45</dd>
|
||||
<dt>Zuletzt geändert</dt><dd>02/24/15 20:57:37</dd>
|
||||
</dl>
|
||||
</header>
|
||||
<p>This is the <em>first article</em> in this blog. <strong>picoblogger</strong> supports basic features of markdown as tested on another instance.</p>
|
||||
<p>Unfortunately it does not seem to work with list - neither ordererd nor unordered. But <a href="http://localhost">links</a> actually do work fine.</p>
|
||||
<p>Dies ist der zweite Test.
|
||||
Ich schreibe verschiedene Zeilen Text und teste damit <strong>Markdown</strong></p>
|
||||
<p>Ist das jetzt ein neuer <em>Absatz</em>?</p>
|
||||
<p>Und wie kann ich Code-Blöcke wie <code>apt-get install</code> einfügen? Funktioniert das mit 3 oder 4 Backticks?</p>
|
||||
<p><code>Gehen auch
|
||||
mehrere
|
||||
Code-zeilen?</code></p>
|
||||
<p>Und was ist mit Listen?
|
||||
- Erster Eintrag
|
||||
- Zweiter Eintrag
|
||||
- Erster Untereintrag
|
||||
- Dritter Eintrag</p>
|
||||
<footer>
|
||||
<p>notags</p>
|
||||
<p>lustig,langweilig,blabla</p>
|
||||
</footer>
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h1>Ein zweiter Test!</h1>
|
||||
<dl>
|
||||
<dt>Autor</dt><dd>homer77</dd>
|
||||
<dt>Erstellt am</dt><dd>02/15/15 23:18:22</dd>
|
||||
<dt>Zuletzt geändert</dt><dd>02/15/15 22:19:30</dd>
|
||||
</dl>
|
||||
</header>
|
||||
<h1>Das ist ein weiter Testartikel</h1>
|
||||
<h2>Ich muss das abschließen für heute</h2>
|
||||
<p><a href="https://example.org">Klick mich</a></p>
|
||||
<footer>
|
||||
<p> </p>
|
||||
</footer>
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h1>Dies ist ein Test</h1>
|
||||
<dl>
|
||||
<dt>Autor</dt><dd>homer77</dd>
|
||||
<dt>Erstellt am</dt><dd>02/15/15 23:16:34</dd>
|
||||
<dt>Zuletzt geändert</dt><dd>02/15/15 22:18:03</dd>
|
||||
</dl>
|
||||
</header>
|
||||
<h1>Type your article <em>right here</em>.</h1>
|
||||
<p>You may use <em>Markdown</em> to format.</p>
|
||||
<footer>
|
||||
<p>test,picoblogger,coden</p>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
<h1>${ARTICLE_TITLE}</h1>
|
||||
<dl>
|
||||
<dt>${TEMPLATE_ARTICLE_AUTHOR}</dt><dd>${ARTICLE_AUTHOR}</dd>
|
||||
<dt>${TEMPLATE_ARTICLE_CREATED}</dt><dd>${ARTICLE_CREATED}</dd>
|
||||
<dt>${TEMPLATE_ARTICLE_MODIFIED}</dt><dd>${ARTICLE_MODIFIED}</dd>
|
||||
<dt>${TEMPLATE_ARTICLE_CREATED}</dt><dd>${ARTICLE_CREATED_DATE} ${ARTICLE_CREATED_TIME}</dd>
|
||||
<dt>${TEMPLATE_ARTICLE_MODIFIED}</dt><dd>${ARTICLE_MODIFIED_DATE} ${ARTICLE_MODIFIED_TIME}</dd>
|
||||
</dl>
|
||||
</header>
|
||||
${ARTICLE_BODY}
|
||||
|
|
Loading…
Reference in New Issue