2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-13 10:35:27 +00:00

migrate plugins repo

This commit is contained in:
2022-02-07 00:24:10 +01:00
parent cd504fad25
commit b046190388
14 changed files with 288 additions and 0 deletions

14
blog.html Normal file
View File

@ -0,0 +1,14 @@
---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>