From bf71c14ea7678e3abbd04537608a14bf503b4abe Mon Sep 17 00:00:00 2001
From: dequis
Date: Thu, 7 Aug 2014 00:54:19 -0300
Subject: A few minor html/css changes
- Limit version column width to 8em
- Change css to make it more obvious that columns are clickable
- Remove duplicate question from the FAQ in the index
- Update URL to the github repo (the old one is a redirect)
- A typo in the third question
---
index.html | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
(limited to 'index.html')
diff --git a/index.html b/index.html
index c01ce85..fa90135 100644
--- a/index.html
+++ b/index.html
@@ -17,12 +17,6 @@ layout: default
/script load to /run in newer versions of
irssi.
-
How do I run scripts?
- Put them into ~/.irssi/scripts/ and in irssi do /script
- load script.pl . There is a default alias for
- /script load to /run in newer versions of
- irssi.
-
How do I rerun scripts?
Just do /script load script.pl .
@@ -36,12 +30,12 @@ layout: default
directory (eg. cd ~/.irssi/scripts/autorun/ ; ln -s
../script.pl .)
- Is there an easy way of managing script? Try
+ Is there an easy way of managing scripts? Try
scriptassist.pl, it can update and manage your scripts
as well as install new ones and search the database.
How do I submit a script to this page?
- See information on how to contribute here.
+ See information on how to contribute here.
@@ -59,16 +53,16 @@ layout: default
{% for script in site.data.scripts %}
- |
+ |
{{ script.filename }}
(Github)
|
- {{ script.name }} |
- {{ script.version }} |
- {{ script.description }} |
- {{ script.authors }} |
+ {{ script.name }} |
+ {{ script.version }} |
+ {{ script.description }} |
+ {{ script.authors }} |
{% endfor %}
--
cgit v1.2.3
From 0345d705714e8a545994224047510ee5e26c6543 Mon Sep 17 00:00:00 2001
From: dequis
Date: Thu, 7 Aug 2014 02:51:41 -0300
Subject: Add "modified" column, prettified with "timeago" if js is available
Also sorts correctly.
Date formatting is something this template engine definitely does right.
The timeago cutoff is set to one year, it just displays YYYY-MM-DD for
dates older than that.
---
index.html | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
(limited to 'index.html')
diff --git a/index.html b/index.html
index fa90135..2541478 100644
--- a/index.html
+++ b/index.html
@@ -48,6 +48,7 @@ layout: default
Version |
Description |
Authors |
+ Modified |
@@ -63,7 +64,12 @@ layout: default
{{ script.version }} |
{{ script.description }} |
{{ script.authors }} |
-
+
+
+ {{ script.modified | date: "%Y-%m-%d" }} |
+
+
+
{% endfor %}
--
cgit v1.2.3