fix templates/themes/index.html
Signed-off-by: natto1784 <natto@weirdnatto.in>
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
max-width: 100%;
|
||||
position: relative;
|
||||
height: 0;
|
||||
padding-bottom: 56.25%
|
||||
padding-bottom: 56.25%;
|
||||
}
|
||||
.videoofnow iframe {
|
||||
position: absolute;
|
||||
|
@@ -43,7 +43,7 @@
|
||||
<div class="quoteofnow">{{ settings.quoteofnow }}</div>
|
||||
<br>
|
||||
<div class="videoofnow">
|
||||
<iframe src="{{ settings.videoofnow }}" />
|
||||
<iframe src="{{ settings.videoofnow }}"></iframe>
|
||||
</div>
|
||||
<br>
|
||||
</div>
|
||||
@@ -65,38 +65,38 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
<h1>Recent Images</h1>
|
||||
<div class="box image">
|
||||
<ul>
|
||||
{% for post in recent_images %}
|
||||
<li>
|
||||
<a href="{{ post.link }}">
|
||||
<img src="{{ post.src }}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="">
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mainBox">
|
||||
<h2>Latest Posts</h2>
|
||||
<ul>
|
||||
{% for post in recent_posts %}
|
||||
<li>
|
||||
<strong>{{ post.board_name }}</strong>:
|
||||
<a href="{{ post.link }}">
|
||||
{{ post.snippet }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mainBox">
|
||||
<h2>Stats</h2>
|
||||
<ul>
|
||||
<li>Total posts: {{ stats.total_posts }}</li>
|
||||
<li>Unique posters: {{ stats.unique_posters }}</li>
|
||||
<li>Active content: {{ stats.active_content|filesize }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="box image">
|
||||
<ul>
|
||||
{% for post in recent_images %}
|
||||
<li>
|
||||
<a href="{{ post.link }}">
|
||||
<img src="{{ post.src }}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="">
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mainBox">
|
||||
<h2>Latest Posts</h2>
|
||||
<ul>
|
||||
{% for post in recent_posts %}
|
||||
<li>
|
||||
<strong>{{ post.board_name }}</strong>:
|
||||
<a href="{{ post.link }}">
|
||||
{{ post.snippet }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mainBox">
|
||||
<h2>Stats</h2>
|
||||
<ul>
|
||||
<li>Total posts: {{ stats.total_posts }}</li>
|
||||
<li>Unique posters: {{ stats.unique_posters }}</li>
|
||||
<li>Active content: {{ stats.active_content|filesize }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
|
Reference in New Issue
Block a user