summaryrefslogtreecommitdiffstats
path: root/scripts.dmp
diff options
context:
space:
mode:
Diffstat (limited to 'scripts.dmp')
-rw-r--r--scripts.dmp34
1 files changed, 34 insertions, 0 deletions
diff --git a/scripts.dmp b/scripts.dmp
new file mode 100644
index 0000000..fc396fe
--- /dev/null
+++ b/scripts.dmp
@@ -0,0 +1,34 @@
+---
+layout: nil
+---
+
+$scripts = {
+{% for script in site.data.scripts %}
+ '{{ script.filename }}' => {
+ 'filename' => '{{ script.filename }}',
+ 'last_modified' => '{{ script.modified }}',
+ 'version' => '{{ script.version }}',
+ 'authors' => '{{ script.authors }}',
+ 'contact' => '{{ script.contact }}',
+ 'name' => '{{ script.name }}',
+ 'description' => '{{ script.description }}',
+ 'license' => '{{ script.license }}',
+{% if script.url %}
+ 'url' => '{{ script.url }}',
+{% endif %}
+{% if script.changed %}
+ 'changed' => '{{ script.changed }}',
+{% endif %}
+{% if script.commands %}
+ 'commands' => '{{ script.commands }}',
+{% endif %}
+{% if script.note %}
+ 'note' => '{{ script.note }}',
+{% endif %}
+{% if script.modules %}
+ 'modules' => '{{ script.modules }}',
+{% endif %}
+
+ },
+{% endfor %}
+};