Skip to content

Latest commit

 

History

History
50 lines (46 loc) · 1.83 KB

index.markdown

File metadata and controls

50 lines (46 loc) · 1.83 KB
layout title
home
Camarilla Futures

Trade Recaps

    {% assign trade_recaps = site.posts | where: "categories", "trade-recap" | sort: 'date' | reverse %} {% for post in trade_recaps limit:5 %}
  • {{ post.date | date: "%B %d, %Y" }}
  • {% endfor %}
More Recaps

Playbook

<div class="main-content">
    <h2>Latest Post</h2>
    {% assign latest_post = site.posts | sort: 'date' | last %}
    <h2>{{ latest_post.title }}</h2>
    <p><i>{{ latest_post.date | date: "%B %d, %Y" }}</i></p>
    <p>{{ latest_post.content }}</p>
</div>

<div class="featured-posts">
    <h2>More Posts</h2>
    <div class="featured-posts-grid">
        {% for post in site.posts limit:3 %}
        <div class="featured-post">
            <div class="featured-post-text">
                <h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3>
                <p>{{ post.date | date: "%B %d, %Y" }}</p>
                <a href="{{ post.url | relative_url }}">Read More</a>
            </div>
        </div>
        {% endfor %}
    </div>
</div>
<script src="{{ '/assets/js/table.js' | relative_url }}"></script>