-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
86 lines (66 loc) · 2.64 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: default
title: Incidents
cover: false
---
<body>
<h1>Welcome to Failure Modes</h1>
<h2>What is Failure Modes?</h2>
<p>
Failure Modes is a community of software practitioners to discuss and share stories about failures in production systems.
We focus on understanding how systems fail and learning from those incidents.
<p><a href="/about">About Failure Modes</a></p>
</p>
<h2>Failure Modes Meetups</h2>
<p>
We host exclusive, invite-only meetups in Bangalore, India,
providing a safe space to discuss failures under the <a href="https://en.wikipedia.org/wiki/Chatham_House_Rule" target="_blank">Chatham House Rule</a>.
<p><a href="/meetup/#next-meetup">Get meetup details</a></p>
</p>
<h2>Explore Incident Stories</h2>
<p>
Dive into real-world postmortems and insights from the community.
<p><a href="/stories">View Stories</a></p>
</p>
<h2>Building Software Systems? Learn about </h2>
<p>
Explore our curated resources about building robust software systems.
<p><a href="/learn">View Resources</a></p>
</p>
<h2>Contribute to Failure Modes</h2>
<p>
Have a story, postmortem, or resource to share?
<p><a href="https://github.com/electron0zero/failure-modes/issues/new" target="_blank">Submit it</a> to our collection.</p>
</p>
</body>
</html>
<main id="content" class="content" role="main">
{% for post in paginator.posts %}
<h1>Recent Posts :arrow_down:</h1>
<article class="post">
<header class="post-header">
<h2 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<time class="post-date" datetime="{{ post.date | date:"%Y-%m-%d" }}">
{{ post.date | date_to_string }}
</time>
{% if post.categories.size > 0 %}
<p>{{ post.categories | array_to_sentence_string | prepend: 'Categories: ' }}</p>
{% endif %}
{% if post.tags.size > 0 %}
<p>{{ post.tags | array_to_sentence_string | prepend: 'Tags: ' }}</p>
{% endif %}
{% if site.author %}
<img class="author-thumb" src="/assets/images/profile.jpg" alt="Author's profile picture" nopin="nopin" />
{{ site.author }}
{% endif %}
</header>
<section class="post-excerpt">
{{ post.excerpt }} <a class="read-more" href="{{ post.url }}">↩</a>
</section>
<footer class="post-meta">
</footer>
<br>
</article>
{% endfor %}
{% include pagination.html %}
</main>