-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexamples.html
More file actions
54 lines (49 loc) · 1.95 KB
/
examples.html
File metadata and controls
54 lines (49 loc) · 1.95 KB
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
---
layout: default
title: Example visualizations and dashboards | Metabase
image: /images/opengraph/learn/index.png
summary: "Explore real life examples built by real Metabase users."
---
<div class="bootstrap">
<div class="public-metabase-examples index-page">
<div class="hero">
<h2>Powered by Metabase</h2>
<h1>Example visualizations<br />and dashboards</h1>
<h3>Explore real life examples built by real Metabase users.<br />Got something great you want to feature here? <a href="/examples/submit">Share it with us.</a></h3>
</div>
<div>
<div class="picker">
<div class="hover-highlight hidden"></div>
<div class="picker-slider">
{% for category in site.data.public-metabase-example-categories %}
{% if category.show == true %}
<button>{% include svg-icons/{{ category.icon }}.html %}{{ category.name }}</button>
{% endif %}
{% endfor %}
</div>
</div>
<div class="entries">
{% for example in site.examples reversed %}
<a href="{{ example.url }}" class="entry" data-categories="{{ example.categories }}">
<div>
<img src="{{ example.thumbnail }}" alt="{{ example.author }}">
</div>
<div>
<button data-url="{{ example.dashboard_url }}">{% include svg-icons/link-modern.html stroke="#509ee3" width=28 height=28 %}</button>
<h4>{{ example.name }}</h4>
<h5>{{ example.author }}</h5>
</div>
</a>
{% endfor %}
<a href="/examples/submit" class="cta">
<p>Got something great you want to feature here?</p>
<button>Share it with us</button>
</a>
</div>
</div>
</div>
<div class="data-sources-footer">
{% include public-metabase-examples/try-metabase-footer-index-page.html %}
</div>
</div>
<script type="text/javascript" src="/js/public-metabase-examples.js"></script>