Skip to content
Snippets Groups Projects
Commit 22d8ffe3 authored by Kevin Lin's avatar Kevin Lin :sparkles:
Browse files

Remove module_table layout

parent 7379d312
No related branches found
No related tags found
No related merge requests found
<table>
<thead>
<tr>
<th scope="col" colspan="3">{{ include.module.title }}</th>
</tr>
</thead>
<tbody>
{% for day in include.module.days %}
<tr>
<td>{{ day.date | date: '%b %e' }}</td>
<td>{{ day.topic | markdownify | remove: '<p>' | remove: '</p>' }}</td>
<td>{{ day.description | markdownify | remove: '<p>' | remove: '</p>' }}</td>
</tr>
{% endfor %}
{% if include.module.content %}
<tr>
<td colspan="3">
{{ include.module.content }}
</td>
</tr>
{% endif %}
</tbody>
</table>
......@@ -16,11 +16,3 @@ Modules are rendered according to the layout file defined in `_layouts/module.ht
{% for module in site.modules %}
{{ module }}
{% endfor %}
## Table Calendar
We can also render modules as HTML tables. Modify `_includes/module_table.html` to make changes.
{% for module in site.modules %}
{% include module_table.html module=module %}
{% endfor %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment