Skip to content

Commit

Permalink
add my full name on the homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Dec 29, 2022
1 parent 9868949 commit 57b17e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/index.html
Expand Up @@ -8,7 +8,7 @@
{% set projects = all_projects.pages | group_by(attribute="extra.when") -%}

<h1>👋 Hey There</h1>
<p>My name is Brian. You've found my site!</p>
<p>My name is Brian Hicks. You've found my site!</p>
<p>The latest post I wrote was <strong><a href="{{ posts.pages[0].path | safe }}">{{ posts.pages[0].title | markdown(inline=true) | safe }}</a></strong>, and the latest talk I gave was <strong><a href="{{ talks.pages[0].path | safe }}">{{ talks.pages[0].title | markdown(inline=true) | safe }}</a></strong> at {{ talks.pages[0].extra.event }}.</p>
<p>{% if projects.now %}Right now I'm working on {% for project in projects.now %}{% if not loop.first %}{% if projects.now | length > 2 and loop.last %}, and {% elif loop.last %} and {% else %}, {% endif %}{% endif %}<a href="{{ project.path | safe }}"><strong>{{ project.title }}</strong></a> ({{ project.description }}{% if loop.last %}.{% endif %}){% endfor %}{% endif %}{% if projects.next %} {% if projects.now %}After that,{% else %}Soon,{% endif %} I'll be working on {% for project in projects.next %}{% if not loop.first %}{% if projects.next | length > 2 and loop.last %}, and {% elif loop.last %} and {% else %}, {% endif %}{% endif %}<a href="{{ project.path | safe }}"><strong>{{ project.title }}</strong></a> ({{ project.description }}{% if loop.last %}.{% endif %}){% endfor %}{% endif %}<p>
{% if projects.past %}<p>In the past, I've worked on {% for project in projects.past %}{% if not loop.first %}{% if projects.past | length > 2 and loop.last %}, and {% elif loop.last %} and {% else %}, {% endif %}{% endif %}<a href="{{ project.path | safe }}"><strong>{{ project.title }}</strong></a> ({{ project.description }}{% if loop.last %}.{% endif %}){% endfor %}</p>{% endif %}
Expand Down

0 comments on commit 57b17e1

Please sign in to comment.