Skip to content

Commit

Permalink
Added package_updates liquid template.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgmdev committed Mar 9, 2021
1 parent f7d86ee commit 66110c0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions _includes/archdroid/package_updates.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<table
id="table-package-updates"
class="table table-hover table-responsive table-borderless"
data-toggle="table">
<tbody>
{%-for pkg in site.data.package_updates-%}
<tr>
<td>
{{ pkg.name }} {{ pkg.version }}-{{ pkg.release }}
</td>
<td>
<a href="{{ '/packages/' | append: pkg.name | relative_url }}">{{ pkg.arch }}</a>
</td>
</tr>
{%-endfor-%}
</tbody>
</table>

0 comments on commit 66110c0

Please sign in to comment.