-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
83 lines (81 loc) · 3.23 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
---
layout: default
---
<section class="section">
<h1 class="title">Meltano Handbook</h1>
<p class="subtitle">Your src for the inner workings of <strong>Meltano</strong></p>
<div class="block">
<p>Welcome! The Meltano team handbook is the central repository for how the team functions and builds the product.</p>
</div>
<div class="block">
<p>In line with our <a href="/company/values#together-we-thrive">Together we thrive</a> <a href="/company/values">value</a>, the handbook is open to the world, and we welcome feedback.
Please make a <a href="https://github.com/meltano/handbook/pulls/new">pull request</a> to suggest improvements or add clarifications.
Please use <a href="https://github.com/meltano/handbook/issues">issues</a> to ask questions.</p>
</div>
</section>
<section class="section">
<div class="columns">
<div class="column">
<h3 class="is-size-3">Quick Links</h3>
<ul>
<li><a href="/company/values">Company Values</a></li>
<li><a href="/product/roadmap">Product Roadmap</a></li>
<li><a href="/peopleops/benefits">Employee Benefits</a></li>
<li><a href="/marketing/brand">Brand Guidelines</a></li>
<li><a href="/timeline">Timeline of our History</a></li>
</ul>
</div>
<div class="column">
<h3 class="is-size-3">Shared Calendars & Meetings</h3>
<ul>
<li>
<a href="https://calendar.google.com/calendar/u/1?cid=Y18wMWNqNDhoYTRoMTk5Y3RqZWZpODV0OWRnY0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t">
<span class="icon"><i class="fas fa-table"></i></span> Community Meetings Calendar
</a>
</li>
<li>
<a href="/marketing/community#office-hours">
<span class="icon"><i class="fas fa-laptop-house"></i></span> Office Hours
</a>
</li>
<li>
<a href="/marketing/community#demo-day">
<span class="icon"><i class="fas fa-laptop-code"></i></span> Demo Day
</a>
</li>
</ul>
</div>
</div>
</section>
<section class="section">
<div class="columns is-multiline is-centered">
{% if site.collections %}
{% for collection in site.collections %}
{% if collection.label != "posts" %}
<div class="column is-one-quarter">
<div class="card chiclet">
<header class="card-header chiclet-header">
<p class="card-header-title">
{{ collection.name }}
</p>
</header>
<div class="card-content has-text-centered">
<div class="block">
{% if collection.icon %}
{% assign icon = collection.icon %}
<span class="icon is-large"><i class="fas fa-5x {{ icon }}"></i></span>
{% else %}
<span class="icon is-large"><i class="fas fa-5x fa-book-open"></i></span>
{% endif %}
</div>
</div>
<footer class="card-footer">
<a href="/{{ collection.label }}" class="card-footer-item">View</a>
</footer>
</div>
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>
</section>