Skip to content

Commit

Permalink
Andy/Include reports in blog page (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Tran authored May 1, 2024
1 parent e510460 commit 77b8336
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions content.json
Original file line number Diff line number Diff line change
Expand Up @@ -2367,7 +2367,7 @@
"health care",
"report"
],
"length": "20 min read",
"length": "25 min read",
"source": "https://docs.monadical.com/s/4ivL4A4oX",
"url": "/reports/ai-as-new-standard-healthcare-innovation.html",
"template": "reports/ai-as-new-standard-healthcare-innovation.html",
Expand All @@ -2376,7 +2376,7 @@
"name": "Andy Tran",
"title": "Software Engineer",
"handle": "@trandromeda",
"url": "",
"url": "https://trandromeda.com/",
"image": "/static/core/img/andy.png"
}
]
Expand Down
3 changes: 2 additions & 1 deletion templates/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ <h2><a id="main">Blog Posts from the Monadical Team</a></h2>
</div>
<div class="container margin-bottom-150">
<div class="row articles">
{% for post in POSTS.values() %}
{% set posts = (POSTS.values() | list) + (REPORTS.values() | list) %}
{% for post in posts | sort(attribute='date', reverse=True) %}
<div class="col-12 col-md-6 text-center article mb-4 blog-card">
<div class="card h-100 ">
<a href="{{ post.url }}">
Expand Down

0 comments on commit 77b8336

Please sign in to comment.