We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5babf commit 3c0f4a5Copy full SHA for 3c0f4a5
event.html
@@ -14,9 +14,11 @@ <h1 class="t-section-headline">Civic Tech Events</h1>
14
15
<br>
16
{% for event in site.data.events.active %}
17
- <h3><a href="{{event.url}}">{{ event.name }}- {{ event.date }}</a></h3>
18
- <p><i>{{ event.location }}</i></p>
19
- <p>{{ event.description | markdownify }}</p><br>
+ <div itemscope itemtype="http://schema.org/Event">
+ <h3><a href="{{event.url}}"><span itemprop="name" >{{ event.name }}</span>- <span itemprop="startDate">{{ event.date }}</span></a></h3>
+ <p><i itemprop="location">{{ event.location }}</i></p>
20
+ <p itemprop="description">{{ event.description | markdownify }}</p><br>
21
+ </div>
22
{% endfor %}
23
</section>
24
</div>
0 commit comments