Welcome! This page walks you through personalizing this portfolio template to showcase your work, research, and creative projects. Once you’re comfortable editing and have updated the main sections, you can delete this file—it’s just here to help you get started.
This portfolio template includes:
index.md) with your name and card links to main sectionsresearch.md) for academic work and publicationsteaching.md) for courses and pedagogycreative.md) for projects, exhibitions, and creative workcv.md) for your full curriculum vitaescrollstories/) for visual narrative essaysmap.md) for geospatial projectsThe easiest way to edit your site is using GitHub’s built-in VS Code editor:
. (period) key on your keyboard
To save changes: Press Ctrl+S (Windows/Linux) or Cmd+S (Mac)
index.md)Open index.md and replace the template introduction with your own name and bio:
---
title: Your Name Here
layout: nav-profile
---
# Your Name Here
Write a short intro about yourself and your work...
<div class="card h-card">
<a href="/portfolio-template//research.html" class="card-link">
<!-- Image -->
<img src="/portfolio-template//assets/images/Cleve-van_construction-tower-babel.jpg" class="card-img-left" alt="Research">
<!-- Content -->
<div class="card-body">
<div>
<h3>Research</h3>
<p class="card-text">My research investigates how digital technology can reimagine public history and expand access to cultural heritage. I focus on virtual museums, interactive ...</p>
</div>
</div>
</a>
</div>
<div class="card h-card">
<a href="/portfolio-template//teaching.html" class="card-link">
<!-- Image -->
<img src="/portfolio-template//assets/images/great-lecture.jpg" class="card-img-left" alt="Teaching">
<!-- Content -->
<div class="card-body">
<div>
<h3>Teaching</h3>
<p class="card-text">I view lectures as opportunities to model expert thinking and clarify complex ideas, building a strong intellectual foundation for students. From this base, ...</p>
</div>
</div>
</a>
</div>
<div class="card h-card">
<a href="/portfolio-template//creative.html" class="card-link">
<!-- Image -->
<img src="/portfolio-template//assets/images/ai-created-kinetic-sculpture.png" class="card-img-left" alt="Creative">
<!-- Content -->
<div class="card-body">
<div>
<h3>Creative</h3>
<p class="card-text">I create kinetic sculptures that invite steel, wood, and glass to dance with air, vibration, and subtle human presence. Inspired by the mechanics of insect w...</p>
</div>
</div>
</a>
</div>
<div class="card h-card">
<a href="/portfolio-template//cv.html" class="card-link">
<!-- Image -->
<img src="/portfolio-template//assets/images/Augustine_Lateran.jpg" class="card-img-left" alt="Curriculum Vitae">
<!-- Content -->
<div class="card-body">
<div>
<h3>Curriculum Vitae</h3>
<p class="card-text">My CV reflects a career at the intersection of creative practice, research, and pedagogy. It documents publications, grants, teaching, and collaborative proj...</p>
</div>
</div>
</a>
</div>
research.md)Open research.md and replace the sample content:
teaching.md)Open teaching.md and add:
creative.md)Open creative.md and showcase:
cv.md)Open cv.md and update with your actual CV:
Want to add a page (like “Blog” or “Projects”)? Here’s how:
index.md lives)blog.md or projects.md---
title: Blog
layout: base
homepage: true
position: 5
summary: Thoughts and updates from my research journey.
thumbnail: assets/images/your-image.jpg
---
# Blog
Your content here...
Front matter explained:
homepage: true — makes it appear on your homepage card stackposition: 5 — controls the order (lower numbers = earlier in the list)summary — text shown on the homepage cardthumbnail — image shown on the homepage cardTo make your new page appear in the top navigation:
_data/top-nav.yml- title: "Blog"
url: /blog
Save and your new page appears in the nav bar!
assets/images/ folder:
assets/images/
Image naming tips:
field-site-2024.jpg)For more control over image display, use Xanthan’s built-in includes:
<figure class="right" style="width: 40%">
<a class="image" href="/portfolio-template//assets/images/your-image.jpg"><img src="/portfolio-template//assets/images/your-image.jpg" alt="Your caption here" width="100%"></a>
<figcaption>
<p>Your caption here</p>
</figcaption>
</figure>
See the Xanthan Image Documentation for all options.
_config.yml)Open _config.yml to change:
title: Your Name - Portfolio
description: Academic portfolio and digital research
url: "https://yourusername.github.io"
baseurl: ""
Navigation is controlled by YAML files in _data/:
top-nav.yml — Top navigation barsidebar.yml — Left sidebar navigation (if using that layout)nav-profile.yml — Profile sidebar settingsJust edit these files to add/remove/reorder menu items.
For custom colors, fonts, and styling:
_includes/ or assets/css/You don’t need to know HTML! Use simple markdown:
# Big Heading
## Smaller Heading
**Bold text**
*Italic text*
[Link text](https://example.com)
- Bullet point
- Another point
1. Numbered list
2. Second item
See examples in the existing pages—just copy the formatting you like!
For visual narrative essays with scrolling effects:
scrollstories/ folder for examplesYour template is built on Xanthan, which has extensive docs:
/docs/ folder in your repositoryAI tools like Claude or ChatGPT can help:
Check out the Using AI with Xanthan Guide for tips.
Once you’ve customized your portfolio and feel comfortable editing:
instructions.md)
_data/nav-top.yml and delete the Instructions entry> ✏️ Template Instructions: callout boxes)index.md — Homepageresearch.md, teaching.md, creative.md, cv.md — Main pages_config.yml — Site settings_data/nav-top.yml — Navigation menuassets/images/ — Image storage.md file, add to top-nav.ymlassets/images/, reference with _data/top-nav.yml or sidebar.ymllayout: in page front matterQuestions? Check the Xanthan documentation or open an issue.