Added overwrite- and fallback-content
[demos/httpresources] / src / main / resources / fallback / index.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <title>HttpResources-Demo with Spring Boot</title>
5   </head>
6   <body>
7     <h1>HttpResources-Demo with Spring Boot</h1>
8     <h2>Fallback Content</h2>
9     <p>
10       This content is only visible, if it does not on the origin
11       server, or if no orign server is running.
12     </p>
13     <p>
14       Start any webserver at <strong>http://localhost:8888</strong> or
15       overwrite <strong>origin</strong> in the
16       <strong>application.properties</strong>...
17     </p>
18     <p>
19       Overwritten content:
20     </p>
21     <ul>
22       <li><a href="/favicon.ico">favicon.ico</a></li>
23       <li><a href="/test.html">test.html</a></li>
24     </ul>
25   </body>
26 </html>