aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/templates/src/usertemplates/standard.html
blob: ef78001f9c44d5e873393ea1a049414e519d7202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<ste:load name="master.html" />
<ste:block name="content">
	<ste:on_section var="section">
		<ste:articles_get var="article" sectionvar="section" sort="timestamp desc" perpage="10" page="$current[page]" maxpage="maxpage">
			<div class="article_short">
				<h2>$article[title]</h2>
				$article[excerpt]
				<div class="readmore_link"><a href="<ste:escape>$article[fullurl]</ste:escape>"><ste:get_translation for="read_more" /></a></div>
			</div class="article_short">
		</ste:articles_get>
		<ste:page_prev current="$current[page]" maxpage="$maxpage" default="y" />
		<ste:page_next current="$current[page]" maxpage="$maxpage" default="y" />
	</ste:on_section>
	
	<ste:on_article var="article">
		<div class="fullarticle">
			<h2>$article[title]</h2>
			<div class="article_meta">Published: <ste:date timestamp="$article[timestamp]">%d. %h. %Y, %H:%M</ste:date></div>
			$article[text]
			<ste:if>
				$article[comments_allowed]
				<ste:then>
					<h3>Comments (<ste:article_comments_count article="article" />)</h3>
					<ste:article_comments var="comment" article="article" sort="asc">
						<div class="comment">
							<p><strong>Name</strong>: $comment[author]</p>
							<p><strong>Date</strong>: <ste:date timestamp="$comment[timestamp]">%d. %B %Y, %H:%M</ste:date></p>
							$comment[text]
						</div>
					</ste:article_comments>
					?{$current[commented]|Comment sucessfully stored!|}
					?{$current[comment_fail]|Comment could not be stored: $current[comment_fail]|}
					<ste:if>$current[comment_prev]
						<ste:then>
							<h3>Comment preview</h3>
							<div class="comment">$current[comment_prev]</div>
						</ste:then>
					</ste:if>
					<ste:comment_form article="article" default="y" previewbtn="y" />
				</ste:then>
			</ste:if>
		</div>
	</ste:on_article>
	
	<ste:on_tag var="tag">
		<ste:articles_get var="article" tagvar="tag" sort="timestamp desc" perpage="10" page="$current[page]" maxpage="maxpage">
			<div class="article_short">
				<h2><ste:escape>$article[title]</ste:escape></h2>
				$article[excerpt]
				<div class="readmore_link"><a href="<ste:escape>$article[fullurl]</ste:escape>"><ste:get_translation for="read_more" /></a></div>
			</div class="article_short">
		</ste:articles_get>
		<ste:page_prev current="$current[page]" maxpage="$maxpage" default="y" />
		<ste:page_next current="$current[page]" maxpage="$maxpage" default="y" />
	</ste:on_tag>
</ste:block>