OLD | NEW |
| 1 <!DOCTYPE html> |
1 <html> | 2 <html> |
| 3 <head> |
| 4 |
| 5 <title>Page Title</title> |
| 6 <link rel="stylesheet" href="../dist/css/main.min.css"> |
| 7 <base href="https://www.example.com/news/index.html"> |
| 8 <script src="../scripts/myscript.js"></script> |
| 9 </head> |
| 10 |
2 <body> | 11 <body> |
3 Simple TS with default: Translate. | 12 Simple TS with default: Translate. |
4 Same TS with no default: Translate. | 13 Same TS with no default: Translate. |
5 Nested translation: <a href="http://foo.com/">Foo</a> and <a href="http://baz.co
m/">Baz</a>. | 14 Nested translation: <a href="http://foo.com/">Foo</a> and <a href="http://ba
z.com/">Baz</a>. |
6 Link resolving: <a href="translate" hreflang="en">This page</a>. | 15 Link resolving: <a href="translate" hreflang="en">This page</a>. |
7 Link to a non-translatable page: <a href="sitemap" hreflang="en">Site map</a>. | 16 Link to a non-translatable page: <a href="sitemap" hreflang="en">Site map</a
>. |
8 Entity escaping in links: <a href="http://foo.com/?a&b">Foo</a>. | 17 Entity escaping in links: <a href="http://foo.com/?a&b">Foo</a>. |
9 Image link: <img src="../img/icon"></img> | 18 Image link: <img src="../img/icon"></img> |
10 Link to external source: <a href="http://bar.de/">Bar</a> | 19 Iframe link: <iframe src="../default.asp"></iframe> |
11 Link to self: <a href="rel_path" hreflang="en"> | 20 Script link: <script src="myscripts.js"></script> |
12 Link to self with extension: <a href="rel_path.html" hreflang="en"> | 21 Input link: <input type="image" src="../img/submit.gif" alt="Submit"> |
13 Relative link to local page: <a href="../en/sitemap"> | 22 Link to external source: <a href="http://bar.de/">Bar</a> |
14 Absolute link to local page: <a href="sitemap"> | 23 Link to self: <a href="rel_path" hreflang="en"> |
15 Relative link to different locale: <a href="../de/sitemap"> | 24 Link to self with extension: <a href="rel_path.html" hreflang="en"> |
16 Absolute link to diferent locale: <a href="../de/sitemap"> | 25 Relative link to local page: <a href="../en/sitemap"> |
17 Relative link to page in subfolder: <a href="../foo/bar"> | 26 Absolute link to local page: <a href="sitemap"> |
18 Absolute link to page in subfolder: <a href="../foo/bar"> | 27 Relative link to different locale: <a href="../de/sitemap"> |
| 28 Absolute link to diferent locale: <a href="../de/sitemap"> |
| 29 Relative link to page in subfolder: <a href="../foo/bar"> |
| 30 Absolute link to page in subfolder: <a href="../foo/bar"> |
| 31 Resource URL: <link rel="stylesheet" href="../dist/css/main.min.css"> |
19 </body> | 32 </body> |
| 33 |
20 </html> | 34 </html> |
OLD | NEW |