32 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| include_once("common.php");
 | |
| include("header_top.php");
 | |
| ?>
 | |
| <title>The Homepage of Aaron Lindsay - aclindsay.com</title>
 | |
| <?php include("header_bottom.php"); ?>
 | |
| 
 | |
| <div id="content">
 | |
| 	<div id="main">
 | |
| 		<h2>The Homepage of Aaron Lindsay</h2>
 | |
| 
 | |
| 		<p>Welcome to my personal website!</p>
 | |
| 		<p>Here you will find assorted digital things associated with me: a <a href="<?php echo get_protocol(); ?>blog.aclindsay.com">blog</a> about personal, technological and programming-related topics, a few of the <a href="<?php echo get_base_url(); ?>/projects/">projects</a> on which I have worked, and other miscellany which includes my <a href="<?php echo get_base_url(); ?>/resume/">resume</a>, <a href="<?php echo get_base_url(); ?>/calendar/">calendar</a>, and <a href="<?php echo get_base_url(); ?>/contact/">contact information</a>.</p>
 | |
| 
 | |
| 		<h3>About Me</h3>
 | |
| 		<p>The ten-word summary: I am a Lutheran Eagle Scout who enjoys <strike style="text-decoration:line-through;">tinkering with</strike> <a href="http://www.catb.org/jargon/html/H/hacker.html">hacking</a> things.</p>
 | |
| 	</div>
 | |
| 	<div id="sidebar">
 | |
| 		<center><img src="<?php echo get_base_url(); ?>/graphics/aaron.jpg" alt="Aaron at Angel's Rest near Pearisburg, VA" title="Aaron at Angel's Rest near Pearisburg, VA" style="padding: .5em; width: 90%;" />
 | |
| 		<ul>
 | |
| 			<li><h4 style="margin: 1em 0 .5em 0;">Find me on:</h4></li>
 | |
| 			<li><a href="https://github.com/aclindsa">Github</a></li>
 | |
| 			<li><a href="http://www.facebook.com/aaron.lindsay">Facebook</a></li>
 | |
| 			<li><a href="http://www.flickr.com/photos/aclindsay/">Flickr</a></li>
 | |
| 			<li><a href="http://www.linkedin.com/in/aaronlindsay">LinkedIn</a></li>
 | |
| 		</ul>
 | |
| 		</center>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| <?php include("footer.php"); ?>
 |