-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.html
31 lines (30 loc) · 1.56 KB
/
new.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: "New for you"
---
<div class="text-center">
<h1 class="text-warning mt-5 mb-3">New for you</h1>
<p class="fs-4"><strong>We're constantly making Sprinters better.</strong></p>
<p class="mb-6">Here are some of the notable features and improvements that we’ve made to Sprinters since it first launched.</p>
<div class="timeline position-relative">
<div class="mb-6">
<a href="/feed.xml" class="px-3 py-2 bg-info-subtle rounded-pill border border-info border-4 text-body fs-8 fs-md-6">
<i class="bi bi-rss-fill me-2"></i>Grab the RSS feed
</a>
</div>
{% for entry in site.data.new %}
<div class="timeline-entry border border-4 border-info rounded-4 bg-info-subtle mx-auto mb-6" id="{{ entry.date }}" href="#{{ entry.date }}">
<a href="{{ entry.href }}" class="p-3 d-block text-body">
<h3 class="timeline-title fs-4 mb-1 fw-semibold lh-base text-warning-emphasis">{{ entry.title }}</h3>
<div class="text-secondary-emphasis fs-6">{{ entry.date }}</div>
<img class="my-4" src="{{ entry.image }}">
<div class="timeline-description mb-2">{{ entry.details }}</div>
</a>
</div>
{% endfor %}
</div>
<a href="https://console.sprinters.sh/#" class="btn btn-lg btn-primary fw-semibold">
<div><i class='bi bi-github me-2'></i>Log in with GitHub to get started</div>
<div class="fs-8 mt-1 fw-normal">1000 jobs FREE in your first 30 days</div>
</a>
</div>