+ Added projects/website.rst to describe the site + Updated templates + Added more comments
23 lines
862 B
Plaintext
23 lines
862 B
Plaintext
{% extends "base" %}
|
|
|
|
{% block command %}
|
|
./about.sh
|
|
{% endblock command %}
|
|
|
|
{% block content %}
|
|
<br/>
|
|
> Aspiring Embedded Software Engineer <br/>
|
|
> Electrical and Computer Engineering Masters Student at Auburn University <br/>
|
|
> Graduated from the University of Texas at Dallas with a BS in Computer Engineering <br/>
|
|
> Maker of Basic Websites <br/>
|
|
<br/>
|
|
|
|
<span class="prompt">joey@ahines:~$</span> ls <br/>
|
|
<br/>
|
|
{% for link in links %}
|
|
<a class="link" href="about/{{ link.link_name }}">{{ link.link_name }}</a>
|
|
{% endfor %}
|
|
<a class="link" href="https://www.github.com/joeyahines"> github</a>
|
|
<a class="link" href="mailto:joey@ahines.net"> email</a>
|
|
<a class="link" href="https://www.linkedin.com/in/joeyahines/"> linkedin</a> <br/>
|
|
{% endblock content %} |