diff options
author | yvesf <yvesf-git@xapek.org> | 2011-05-21 10:47:44 +0200 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-05-21 10:47:44 +0200 |
commit | 19b04a031a302e52a90efaa37e6e13c4e844b784 (patch) | |
tree | a36a26385ce715ae453c889051286decc745cb5d /make.sh | |
parent | f2254fd02a6f3333123ba77c51b2608611ed7449 (diff) | |
download | studienarbeit-2011-19b04a031a302e52a90efaa37e6e13c4e844b784.tar.gz studienarbeit-2011-19b04a031a302e52a90efaa37e6e13c4e844b784.zip |
Web-Version aktualisiert
Diffstat (limited to 'make.sh')
-rwxr-xr-x | make.sh | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -7,10 +7,22 @@ cat > index.html <<"HTML" <html> <head> <title>Studienarbeit 2011 KSM Eclipse-RCP</title> +<meta charset='utf-8'> <style> body { text-align: center; -background-color: efefef; +background-color: dfdfdf; +} +#bar { +border: 1px solid gray; +background-color: lightGray; +width: 30%; +position: fixed; +top: 4px; +left: 35%; +} +a { + text-decoration: none; } </style> <script src="js/jquery-1.6.min.js" type="text/javascript"></script> @@ -22,7 +34,11 @@ background-color: efefef; </script> </head> <body> -<a href="document.pdf">Download als PDF</a> +<div id="bar"> + <a href="http://github.com/dhbw-horb/ksm-rcp">KSM Projektrepository</a> + • + <a href="http://www.ba-horb.de/~ksm">KSM Website</a> +</div> <br /> <br /> HTML @@ -40,3 +56,6 @@ cat >> index.html <<HTML </body> </html> HTML + + +rm document.pdf |