Add hidden post attribute and add hidden post
This commit is contained in:
parent
dd7418be14
commit
340dedbd1b
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Generating Realistic Satellite Imagery with Deep Neural Networks
|
title: Generating Realistic Satellite Imagery with Deep Neural Networks
|
||||||
layout: post
|
layout: post
|
||||||
|
hidden: true
|
||||||
---
|
---
|
||||||
|
|
||||||
I've been doing a lot of experimenting with [neural-style](https://github.com/jcjohnson/neural-style)
|
I've been doing a lot of experimenting with [neural-style](https://github.com/jcjohnson/neural-style)
|
@ -4,26 +4,28 @@ title: Tyler Hallada - Blog
|
|||||||
---
|
---
|
||||||
|
|
||||||
{% for post in paginator.posts %}
|
{% for post in paginator.posts %}
|
||||||
<div class="card">
|
{% if post.hidden == null or post.hidden == false %}
|
||||||
<div class="row clearfix post-header">
|
<div class="card">
|
||||||
<div class="column three-fourths">
|
<div class="row clearfix post-header">
|
||||||
<a href="{{ post.url }}"><h2 class="post-title">{{ post.title }}</h2></a>
|
<div class="column three-fourths">
|
||||||
|
<a href="{{ post.url }}"><h2 class="post-title">{{ post.title }}</h2></a>
|
||||||
|
</div>
|
||||||
|
<div class="column fourth">
|
||||||
|
<span class="timestamp">{{ post.date | date_to_string }}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column fourth">
|
<div class="row clearfix">
|
||||||
<span class="timestamp">{{ post.date | date_to_string }}</span>
|
<div class="column full post">
|
||||||
|
{{ post.excerpt }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row clearfix more-row">
|
||||||
|
<div class="column full">
|
||||||
|
<a href="{{ post.url }}" class="read-more">Read More »</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row clearfix">
|
{% endif %}
|
||||||
<div class="column full post">
|
|
||||||
{{ post.excerpt }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row clearfix more-row">
|
|
||||||
<div class="column full">
|
|
||||||
<a href="{{ post.url }}" class="read-more">Read More »</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<div class="row clearfix pagination">
|
<div class="row clearfix pagination">
|
||||||
|
Loading…
Reference in New Issue
Block a user