diff --git a/.gitignore b/.gitignore index 4086a246..2fca43e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,7 @@ # static html and json -/*/*.html -/*/*.json -/*/res -/*/src -/*/thumb +res/ +src/ +thumb/ /*/config.php *.html @@ -55,7 +53,8 @@ Thumbs.db *.rss /index.html /recent.css -*.json +*.json +/*/ukko.js # tmp filesystem /tmp/cache/* diff --git a/inc/config.php b/inc/config.php index 467f0585..2f2ff477 100644 --- a/inc/config.php +++ b/inc/config.php @@ -29,7 +29,7 @@ // Json File Scrambler // Indicate if json filenames should be scrambled -$config['json_scrambler']['scramble'] = true; +$config['json_scrambler']['scramble'] = false; // Salt for hashing json filenames $config['json_scrambler']['salt'] = '0123456789012345678901'; @@ -1238,6 +1238,9 @@ $config['nicenotice_reasons'][] = "We care, and we hope you feel better soon. We // Minify Javascript using http://code.google.com/p/minify/. $config['minify_js'] = false; + // Version number for main.js and style.css + $config['resource_version'] = 1; + // Dispatch thumbnail loading and image configuration with JavaScript. It will need a certain javascript // code to work. $config['javascript_image_dispatch'] = false; diff --git a/stylesheets/style.css b/stylesheets/style.css index e4d63d0d..537abb85 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -1414,4 +1414,11 @@ table.archive-list tr:hover td { .embed_container { display: block; +} + +.hover-show { + opacity: 0; +} +.hover-show:hover { + opacity: 1; } \ No newline at end of file diff --git a/templates/boardlist.html b/templates/boardlist.html deleted file mode 100644 index 62646845..00000000 --- a/templates/boardlist.html +++ /dev/null @@ -1 +0,0 @@ -I'm your overboard boardlist. You can put here anything and I reside in templates/boardlist.html diff --git a/templates/header.html b/templates/header.html index ff2b7081..2625d347 100644 --- a/templates/header.html +++ b/templates/header.html @@ -1,4 +1,4 @@ - + {% if config.url_favicon %}{% endif %} @@ -15,7 +15,7 @@ {% endif %} {% if not nojavascript %} - + {% if not config.additional_javascript_compile %} {% for javascript in config.additional_javascript %}{% endfor %} {% endif %} diff --git a/templates/index.html b/templates/index.html index 4988d171..40faa3a9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -42,8 +42,6 @@ {% if not no_post_form %} {% include 'post_form.html' %} - {% else %} - {% include 'boardlist.html' %} {% endif %} {% if config.page_nav_top %} @@ -75,7 +73,8 @@