|
|
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Tovi Jaeschke's Homepage</title>
- <link rel="stylesheet" type="text/css" href="css/main.css">
- <link href='https://fonts.googleapis.com/css?family=Average|Montserrat' rel='stylesheet' type='text/css'>
- <link rel="stylesheet" href="css/prism.css">
- <script src="js/prism.js"></script>
- <script type="text/javascript" src="js/script.js"></script>
- </head>
- <body>
- {{ template "header.gohtml" }}
- <div class="container">
- {{ template "sidebar.gohtml" . }}
- <div class="main">
- <h2>Tovi Jaeschke</h2>
- <p>Hello! My name is Tovi. I'm a 21 year old programmer and computer security enthusiast.</p>
- <p>My main hobbies include reading, programming, pentesting, philosophy, and designing websites. I actively develop in Go, Python, php, and HTML/CSS/JS. I enjoy using versatile, minimalist, open source programs, such as vim, st, dmenu, and dwm.</p>
- <p>You can find some of my portfolio and some front-end demos <a href="https://demos.tovijaeschke.xyz">here</a></p>
- <p>On this site, you will find programs I have written, CTF walkthroughs, minimalist programs I have found and begun using, and updates about my current workflow.</p>
- <h3>Recent posts:</h3>
- <ul class="index-recent-posts">
- <?php include 'php/recent-posts-index.php';?>
- </ul>
- </div>
- </div>
- <footer>
- <a href="mailto:tovi@tovijaeschke.xyz">tovi@tovijaeschke.xyz</a>
- <p>Last updated: <?php lastUpdate();?></p>
- </footer>
- </body>
- </html>
|