summaryrefslogtreecommitdiff
path: root/templates/dashboard.twig
blob: 0e1019346f3c97df1c7ebe18cb6d2596b9f0cd62 (plain)
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
{% extends 'base.twig' %}

{% block subtitle %}
  Dashboard
{% endblock %}
{% block main %}
  <section class="content">
    <h3>Hello World</h3>
  </section>

  <section class="content">
    <h3>Cards</h3>
  </section>

  {% set card = cardOfTheDay %}
  {% set cardSettings = {
    "cardHeader": "Card Of The Day",
    "isPreview": true,
    "isVotable": true,
    "showArtworks": true
  } %}
  {{ include('card/card_template.twig') }}

  <!--
  TODO
  <div class="content">
    <h4>Updates to my cards</h4>
  </div>
  -->

  <!--
  TODO
  <section class="content">
    <h3>Events</h3>
  </section>
  -->

  <!--
  TODO
  <section class="content">
    <h3>News</h3>
  </section>
  -->
{% endblock %}