mirror of
https://gh.wpcy.net/https://github.com/TGMPA/TGM-Plugin-Activation.git
synced 2026-07-14 10:56:39 +08:00
26 lines
675 B
HTML
26 lines
675 B
HTML
---
|
|
menutitle: Features
|
|
anchor: home
|
|
permalink: /
|
|
sitemap:
|
|
exclude: true
|
|
---
|
|
|
|
<section class="recent-posts">
|
|
<h3>Recent posts</h3>
|
|
<ul>
|
|
{% for post in site.posts | limit: 5 %}
|
|
<li>
|
|
<a href="{{ post.url | remove: 'index.html' | prepend: site.tgmpa.url }}">{{ post.title }}</a><br />
|
|
<span class="post-meta"><a href="{{ post.author | url_escape | prepend: 'https://github.com/' }}">@{{ post.author }}</a> |
|
|
<time datetime="{{ post.date | date: "%F %R" }}">{{ post.date | date_to_string }}</time></span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
|
|
{% for section in site.homepage %}
|
|
<div id="{{ section.anchor }}">
|
|
{{ section.content }}
|
|
</div>
|
|
{% endfor %}
|