Mercurial Hosting > luan
changeset 1326:29d6d7d79c41
website - use relative paths
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 07 Feb 2019 23:13:23 -0700 |
parents | 28c1fc6d9d29 |
children | b29eefad2111 |
files | website/src/diff.html website/src/docs.html website/src/index.html website/src/manual.html website/src/pil.html website/src/tutorial.html |
diffstat | 6 files changed, 26 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/website/src/diff.html Thu Feb 07 23:00:20 2019 -0700 +++ b/website/src/diff.html Thu Feb 07 23:13:23 2019 -0700 @@ -3,12 +3,15 @@ <head> <title>How Luan differs from Lua</title> <style> - @import "/site.css"; + @import "site.css"; </style> </head> <body> -<div small><a href="/">Luan</a></div> +<div small> + <a href=".">Luan</a> + / <a href="docs.html">Documentation</a> +</div> <h1>How Luan differs from Lua</h1>
--- a/website/src/docs.html Thu Feb 07 23:00:20 2019 -0700 +++ b/website/src/docs.html Thu Feb 07 23:13:23 2019 -0700 @@ -3,11 +3,13 @@ <head> <title>Luan Documentation</title> <style> - @import "/site.css"; + @import "site.css"; </style> </head> <body> - <div small><a href="/">Luan</a></div> + <div small> + <a href=".">Luan</a> + </div> <h1>Luan Documentation</h1>
--- a/website/src/index.html Thu Feb 07 23:00:20 2019 -0700 +++ b/website/src/index.html Thu Feb 07 23:13:23 2019 -0700 @@ -3,7 +3,7 @@ <head> <title>Luan</title> <style> - @import "/site.css"; + @import "site.css"; </style> </head> <body> @@ -14,7 +14,7 @@ <p>Luan is a <a href="http://www.lua.org">Lua</a>-like language implemented in <a href="https://www.oracle.com/java/">Java</a>.</p> <div link><a href="docs.html">Documentation</a></div> - <div link><a href="/download/">Download</a></div> + <div link><a href="download/">Download</a></div> <div link><a href="https://bitbucket.org/frschmidt/luan">Source</a></div> <div link><a href="http://forum.luan.ws/">Forum</a></div> </body>
--- a/website/src/manual.html Thu Feb 07 23:00:20 2019 -0700 +++ b/website/src/manual.html Thu Feb 07 23:13:23 2019 -0700 @@ -3,12 +3,15 @@ <head> <title>Luan Reference Manual</title> <style> - @import "/site.css"; + @import "site.css"; </style> </head> <body> -<div small><a href="/">Luan</a></div> +<div small> + <a href=".">Luan</a> + / <a href="docs.html">Documentation</a> +</div> <h1>Luan Reference Manual</h1>
--- a/website/src/pil.html Thu Feb 07 23:00:20 2019 -0700 +++ b/website/src/pil.html Thu Feb 07 23:13:23 2019 -0700 @@ -3,11 +3,14 @@ <head> <title>Programming in Lua</title> <style> - @import "/site.css"; + @import "site.css"; </style> </head> <body> - <div small><a href="/">Luan</a></div> + <div small> + <a href=".">Luan</a> + / <a href="docs.html">Documentation</a> + </div> <h1>Programming in Lua</h1>
--- a/website/src/tutorial.html Thu Feb 07 23:00:20 2019 -0700 +++ b/website/src/tutorial.html Thu Feb 07 23:13:23 2019 -0700 @@ -3,12 +3,15 @@ <head> <title>Luan Tutorial</title> <style> - @import "/site.css"; + @import "site.css"; </style> </head> <body> -<div small><a href="/">Luan</a></div> +<div small> + <a href=".">Luan</a> + / <a href="docs.html">Documentation</a> +</div> <h1>Luan Tutorial</h1>