1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-16 09:33:13 +02:00

add hostname to link posts, stop displaying categories

This commit is contained in:
Matthias Kretschmann 2013-11-24 17:55:57 +01:00
parent c5e2cfd2cb
commit 521e73730f
6 changed files with 44 additions and 47 deletions

View File

@ -4,7 +4,10 @@
<article class="hentry format-link"> <article class="hentry format-link">
<header> <header>
<h1 class="entry-title"> <h1 class="entry-title">
<a href="{{ post.linkurl }}" title="Go to source">{{ post.title }} <i class="icon-forward"></i></a> <a href="{{ post.linkurl }}" title="Go to source">
{{ post.title }} <i class="icon-forward"></i>
<span class="linkurl">{{ post.linkurl | remove:'http://' | split:'/' | first }}</span>
</a>
</h1> </h1>
</header> </header>

View File

@ -7,7 +7,10 @@ layout: base
<article class="hentry format-link"> <article class="hentry format-link">
<header> <header>
<h1 class="entry-title"> <h1 class="entry-title">
<a href="{{ page.linkurl }}" title="Go to source">{{ page.title }} <i class="icon-forward"></i></a> <a href="{{ post.linkurl }}" title="Go to source">
{{ page.title }} <i class="icon-forward"></i>
<span class="linkurl">{{ page.linkurl | remove:'http://' | split:'/' | first }}</span>
</a>
</h1> </h1>
</header> </header>
@ -20,11 +23,6 @@ layout: base
</section> </section>
<footer class="entry-meta"> <footer class="entry-meta">
<p class="category">
{% for category in page.categories %}
<a rel="category tag" href="" title="{{ category }}">{{ category }}</a>
{% endfor %}
</p>
<p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p> <p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p>
<p class="time">{{ page.date | date_to_string }} <span class="modtime"></span></p> <p class="time">{{ page.date | date_to_string }} <span class="modtime"></span></p>
</footer> </footer>

View File

@ -21,11 +21,6 @@ layout: base
</section> </section>
<footer class="entry-meta"> <footer class="entry-meta">
<p class="category">
{% for category in page.categories %}
<a rel="category tag" href="" title="{{ category }}">{{ category }}</a>
{% endfor %}
</p>
<p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p> <p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p>
<p class="time">{{ page.date | date_to_string }} <span class="modtime"></span></p> <p class="time">{{ page.date | date_to_string }} <span class="modtime"></span></p>
</footer> </footer>

View File

@ -18,11 +18,6 @@ layout: base
</section> </section>
<footer class="entry-meta"> <footer class="entry-meta">
<p class="category">
{% for category in page.categories %}
<a rel="category tag" href="" title="{{ category }}">{{ category }}</a>
{% endfor %}
</p>
<p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p> <p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p>
<div class="time"> <div class="time">
<p>{{ page.date | date_to_string }}</p> <p>{{ page.date | date_to_string }}</p>

View File

@ -76,8 +76,25 @@
} }
.linkurl {
display: block;
font-family: @font-family-base;
font-size: @font-size-mini;
color: @text-color-dimmed;
padding: @line-height-computed/3 0;
margin-left: auto;
margin-right: auto;
.ellipsis;
max-width: 70%;
@media @breakpoint2 {
max-width: 50%;
}
}
.permalink-link { .permalink-link {
float: right; float: right;
font-size: 1.1em
} }
// PHOTO POST // PHOTO POST
@ -148,45 +165,25 @@ a.photoPost {
.clearfix; .clearfix;
margin-top: @line-height-computed*2; margin-top: @line-height-computed*2;
font-size: @font-size-small; font-size: @font-size-small;
line-height: 1.3em; text-align: center;
text-align: left; }
.byline, .byline,
.time, .time {
time {
font-style: italic; font-style: italic;
color: @text-color-light; color: @text-color-light;
font-size: @font-size-mini;
p { margin-bottom: 0; }
@media @breakpoint2 {
text-align: right;
}
}
} }
.byline { .byline {
margin-bottom: 0; margin-bottom: 0;
@media @breakpoint2 {
margin-top: -@line-height-computed*3;
}
a { font-style: normal; } a { font-style: normal; }
.by { display: block }
} }
.by { display: block } .time,
.category {
.heading-band;
a { margin-right: 1em }
}
.modtime { .modtime {
color: @text-color-dimmed
} }

View File

@ -26,6 +26,15 @@
li { color: @text-color-dimmed; } li { color: @text-color-dimmed; }
} }
// Text overflow
/////////////////////////////////////
.ellipsis {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
}
// Dashed Dividers // Dashed Dividers
///////////////////////////////////// /////////////////////////////////////