-
Notifications
You must be signed in to change notification settings - Fork 1
/
calendar.hbs
25 lines (24 loc) · 1.13 KB
/
calendar.hbs
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
{{!< default}}
<div class="calendar-section">
<h1 class="heading">
Calendar
</h1>
{{!-- Displays current month name --}}
<h3 class="subheading">
The Schedule for {{date format="MMMM"}} is as follows:
</h3>
{{!-- Tweak monthly calendar here --}}
<div class="calendar-card">
{{> calendarCard day="02" month="Oct" weekday="Sunday" time="11AM - 12PM" title="Abhinav Sekhri" subtitle="Consulting Lawyer"}}
{{> calendarCard day="09" month="Oct" weekday="Sunday" time="11AM - 12PM" title="Abhinav Sekhri" subtitle="Consulting Lawyer"}}
{{> calendarCard day="16" month="Oct" weekday="Sunday" time="11AM - 12PM" title="Abhinav Sekhri" subtitle="Consulting Lawyer"}}
{{> calendarCard day="30" month="Oct" weekday="Sunday" time="11AM - 12PM" title="Abhinav Sekhri" subtitle="Consulting Lawyer"}}
</div>
</div>
{{>events}}
{{!-- Only use center align for this banner --}}
<div class="banner" style="text-align: center;">
<p>
This schedule will be regularly updated and posted on <a href="https://twitter.com/PatrakarClinic">Patrakar Clinic’s Twitter</a>.
</p>
</div>