-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (22 loc) · 1.33 KB
/
index.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
32
---
layout: default
title: Home
---
<article class="post">
This page was last updated at <time datetime="2021-10-14T00:00:00+00:00" class="post-date" style="display: inline">14 October 2021</time>
<p>Dish is a developer-focused tool, has an all engineer team, and has one single fundamental goal: to make software development magical, one tool at a time. We know how important open source software is - it is a great way to get feedback and help from others, provides transparency, and enables infinite customisation opportunities.</p>
<hr />
<p>This page is a collection of open source projects that we have worked on - whether they are at the core of our work, an internal tool to speed up development, or a weekend side project. Feel free to contribute to any of these projects!</p>
<p>Got questions? <a href="mailto:[email protected]">Contact us</a></p>
<p>Want to know what Dish is? <a href="https://dishhq.xyz">Check us out!</a></p>
<p>Need to check out our docs? <a href="https://docs.dishhq.zyx">Explore the magic!</a></p>
</article>
{% assign postsByYearMonth = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %}
{% for yearMonth in postsByYearMonth %}
<h2>{{ yearMonth.name }}</h2>
<ul>
{% for post in yearMonth.items %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}