mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Add apps.md
This commit is contained in:
parent
45968969f7
commit
ed7e06ae68
1 changed files with 14 additions and 0 deletions
14
apps.md
Normal file
14
apps.md
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#Apps
|
||||||
|
|
||||||
|
<ul id="app-list"></ul>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
$.getJSON('http://app.yunohost.org/list.json', function(app_list) {
|
||||||
|
console.log(app_list);
|
||||||
|
$.each(app_list, function(app_id, infos) {
|
||||||
|
$('#app-list').append('<li><a data-app-id="'+ app_id +'">'+ infos.manifest.name +'</a></li>');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
Loading…
Add table
Reference in a new issue