Updates related to the website: added 'thank you' backlink and updated all hardcoded main website references.

This commit is contained in:
Ivan Davidov 2016-09-10 20:34:43 +03:00
parent 95934055be
commit 01af121606
3 changed files with 21 additions and 21 deletions

View File

@ -1,21 +1,23 @@
Minimal Linux Live Minimal Linux Live
======= =======
Website: http://skamilinux.hu/minimal Website 1: http://minimal.idzona.com
Tutorial: http://skamilinux.hu/minimal/the_dao_of_minimal_linux_live.txt Website 2: http://skamilinux.hu/minimal
Tutorial: http://minimal.idzona.com/the_dao_of_minimal_linux_live.txt
Architecture: http://blog.idzona.com/2016/04/component-architecture-of-minimal-linux-live.html Architecture: http://blog.idzona.com/2016/04/component-architecture-of-minimal-linux-live.html
Emulator: http://skamilinux.hu/minimal/emulator Emulator: http://minimal.idzona.com/emulator
![Minimal Linux Live JavaScript Emulator](http://skamilinux.hu/minimal/assets/img/minimal_linux_live_javascript_emulator.png) ![Minimal Linux Live JavaScript Emulator](http://minimal.idzona.com/assets/img/minimal_linux_live_javascript_emulator.png)
YouTube: https://youtu.be/u5KYDaCLChc?list=PLe3TW5jDbUAiN9E9lvYFLIFFqAjjZS9xS YouTube: https://youtu.be/u5KYDaCLChc?list=PLe3TW5jDbUAiN9E9lvYFLIFFqAjjZS9xS
![Minimal Linux Live](http://skamilinux.hu/minimal/assets/img/minimal_linux_live.png) ![Minimal Linux Live](http://minimal.idzona.com/assets/img/minimal_linux_live.png)
Other projects based on "Minimal Linux Live": Other projects based on "Minimal Linux Live":

View File

@ -16,7 +16,7 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="twelve columns" style="text-align: center;"> <div class="twelve columns" style="text-align: center;">
<h2><a href="#" style="text-decoration: none; color: #000;">Minimal Linux Live</a></h2> <h2><a href="." style="text-decoration: none; color: #000;">Minimal Linux Live</a></h2>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
@ -478,9 +478,9 @@
<div style="font-size: 10%;">&nbsp;</div> <div style="font-size: 10%;">&nbsp;</div>
<div id="footer" class="row" style="text-align: center;"> <div id="footer" class="row" style="text-align: center;">
<div class="twelve columns"> <div class="twelve columns">
Copyright &copy; 2014 - 2016 <a href="." title="Minimal Linux Live">Minimal Linux Live</a>
<span class="separator">|</span> <span class="separator">|</span>
<a href="#" title="Minimal Linux Live">Minimal Linux Live</a> Copyright &copy; 2014 - 2016
</div> </div>
</div> </div>
</div> </div>
@ -524,17 +524,14 @@
var html = footerDiv.innerHTML; var html = footerDiv.innerHTML;
var sepa = ' <span class="separator">|</span> '; var sepa = ' <span class="separator">|</span> ';
var afterSepa = 'Hosting by <a target="_blank" href="http://{1}">{2}</a>.' var afterSepa = '<a target="_blank" href="http://{1}">{2}</a>'
var hostname = window.location.hostname; var hostname = window.location.hostname;
//hostname = 'linux-bg.org';
switch(hostname) { switch(hostname) {
case 'linux-bg.org': { case 'minimal.idzona.com' : {
html += sepa; html += sepa;
html += 'Hosting by <a target="_blank" href="http://linux-bg.org">linux-bg.org</a>'; html += afterSepa.replace("{1}", 'microweber.com').replace("{2}", 'Microweber CMS');
html += ' and ';
html += '<a target="_blank" href="http://linux-bulgaria.org">linux-bulgaria.org</a>.';
footerDiv.innerHTML = html; footerDiv.innerHTML = html;

View File

@ -1,8 +1,9 @@
 
The Dao of Minimal Linux Live (15-Feb-2015) The Dao of Minimal Linux Live (10-Sep-2016)
Author: Ivan Davidov Author: Ivan Davidov
Website: http://minimal.linux-bg.org Website: http://minimal.idzona.com
http://skamilinux.hu/minimal
Email: davidov (dot) i {at} gmail [dot] com Email: davidov (dot) i {at} gmail [dot] com
Redistributed by: <put your name and contact details somewhere here> Redistributed by: <put your name and contact details somewhere here>
@ -88,7 +89,7 @@
7_generate_iso.sh 7_generate_iso.sh
build_minimal_linux_live.sh build_minimal_linux_live.sh
If you have followed the explanation posted on http://minimal.linux-bg.org then you already If you have followed the explanation posted on http://minimal.idzona.com then you already
know that you need to execute the script "build_minimal_linux_live.sh". If you open this know that you need to execute the script "build_minimal_linux_live.sh". If you open this
file with text editor you will find out that all this script does is to execute all other file with text editor you will find out that all this script does is to execute all other
scripts one by one. scripts one by one.