--- /dev/null
+<?php
+/**
+ * @file A block module that displays the links to the weblabels table
+ * for LibreJS compliance.
+ */
+
+/**
+ * Implements hook_block_info().
+ */
+function librejslinks_block_info() {
+ return array(
+ 'librejslinks' => array(
+ 'info' => t('LibreJS Links'),
+ 'cache' => DRUPAL_NO_CACHE // DRUPAL_CACHE_GLOBAL
+ );
+ );
+}
+
+/**
+ * Custom block view.
+ *
+ * Populates our block with the links to our weblabels table.
+ */
+function librejslinks_block_view($delta='') {
+ return array(
+ 'content' => '<div class="content"><a rel="jslicense" href="https://weblabels.fsf.org/crm.fsf.org/CURRENT/">JavaScript license information</a></div>';
+ );
+}