38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
<div class="subpage resources-content">
|
|
|
|
<div class="section-heading">Articles about task management and productivity</div>
|
|
|
|
<h1>Latest blog posts and articles from our blog</h1>
|
|
|
|
<div class="resources-latest-posts">
|
|
<% for post in @posts %>
|
|
<h2><%= link_to post.title, post.url %></h2>
|
|
<div class="post-info">
|
|
<%= t('txt.home.blog_post_info', :on => l(post.date, :format => :cute_long), :in => wp_categories_links(post.categories)) %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="small-button-ct">
|
|
<%= small_button(t('txt.home.see_other_posts'), blog_url) %>
|
|
</div>
|
|
|
|
<% if @featured_articles.present? || @articles.present? %>
|
|
|
|
<h1>Articles about productivity, to-do lists, task lists and being organized</h1>
|
|
|
|
<div class="featured-articles">
|
|
<% for article in @featured_articles %>
|
|
<h2><%= link_to article.title, article %></h2>
|
|
<div class="post-info"><%= t('txt.resources.published_on', :date => l(article.date.to_time, :format => :cute_long)) %></div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="articles">
|
|
<% for article in @articles %>
|
|
<h2><%= link_to article.title, article %></h2>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div> |