Browse Source

index view

pull/2/head
rra 5 years ago
parent
commit
83ae4d53bc
  1. 7
      themes/homebrewtheme/static/css/main.css
  2. 5
      themes/homebrewtheme/templates/index.html

7
themes/homebrewtheme/static/css/main.css

@ -168,6 +168,13 @@ h1, h2,h3 {
font-family:'OrkneyRegular';
}
.index-entry-title{
font-size:1.4rem;
font-weight:bold;
line-height: 1.4em;
font-family:'OrkneyRegular';
}
.entry-title span{
width:100%;
display:inline-block;

5
themes/homebrewtheme/templates/index.html

@ -8,12 +8,13 @@
{% for article in articles_page.object_list %}
<ul class="post-item"><article class="hentry">
<header>
<div class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></div>
<div class="index-entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></div>
</header>
<div class="post-info">
<time class="published" datetime="{{ article.date.isoformat() }}"> <sup>{{ article.locale_date }}</sup> </time>
</div><!-- /.post-info -->
<div class="entry-content"> {{ article.summary }}</div>
<div class="entry-content">
{{ article.summary }}</div>
<!-- /.entry-content -->
<div id="moaaar"><a href="{{SITEURL}}/{{ article.url }}">moaaar</a></div>
</article></ul>

Loading…
Cancel
Save