12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- {{ template "head" . }}
- <body>
- {{ template "header" }}
- {{ template "nav" }}
- <main>
- <h2>In case of emergency</h2>
- <ul>
- <li>My name is Adam Pioterek.</li>
- <li>
- To contact my next of kin:
- <ol>
- <li>take my phone,</li>
- <li>click any button to see the clock,</li>
- <li>swipe up to see the numpad,</li>
- <li>click ‘Emergency’,</li>
- <li>double tap ‘Emergency information’ at the top,</li>
- <li>click ‘CONTACTS’ tab,</li>
- <li>click the contact to dial.</li>
- </ol>
- </li>
- <li>My blood type is B RH+.</li>
- <li>I explicitly agree to donate my organs.</li>
- <li>I do not take any medication.</li>
- </ul>
- </main>
- {{ template "aside" }}
- </body>
- </html>
|