File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ minima:
3838 social_links :
3939 - { platform: linkedin, user_url: "https://www.linkedin.com/in/devinlogan/" }
4040
41+ # Markdown processing enabled
42+ markdown : kramdown
43+ kramdown :
44+ parse_block_html : true
45+
4146# Exclude from processing.
4247# The following items will not be processed, by default.
4348# Any item listed under the `exclude:` key here will be automatically added to
Original file line number Diff line number Diff line change 55< div class ="home ">
66 {{ content }}
77 {%- comment -%} This prevents any posts from being displayed on the home page {%- endcomment -%}
8- </ div >
8+ </ div >
9+
10+ {% for post in site.posts %}
11+ < h2 >
12+ < a href ="{{ post.url | relative_url }} ">
13+ {{ post.title | markdownify | remove: '< p > ' | remove: '</ p > ' }}
14+ </ a >
15+ </ h2 >
16+ {% endfor %}
Original file line number Diff line number Diff line change 1+ < h1 >
2+ {{ page.title | markdownify | remove: '< p > ' | remove: '</ p > ' }}
3+ </ h1 >
You can’t perform that action at this time.
0 commit comments