Welcome!
-
-Welcome to my website! My name is Jim Shepich (@epicshepich). I'm currently a Master's student at Johns Hopkins University studying Data Science and a Master Diviner at Ravenwood School of Magical Arts studying Storm Magic. I'm an avid hobbyist, and some of my interests include: math and science, computer programming, tabletop and video games, martial arts (especially jujutsu), cartoons/anime, reading (mostly sci-fi and fantasy), music, and DIY. I created this website to share some of the projects I'm working on and some of the things I've learned.
-Some notable projects I'm working on:
-
- - This website
- - Finding a job
- - Epics & Emprises - a tabletop roleplaying system inspired by 3.5e D&D, 5e D&D, and JRPGs, with a focus on martial arts and a hard magic system
- - Design & Dissection - a podcast co-hosted by Houston Webb about the design and philosophy of games, specifically TTRPGs (like E&E)
-
-Some useful things I've learned:
-
- - Black widows and quicksand can both be found in Michigan and are not as deadly as you are led to believe.
- - If you're compiling a LaTeX document and the compilation stops midway, type "R" into the console and hit Enter.
- - A good way to prevent ear infections is to sleep with your ear in the hole of a neck pillow because it allows your ear canal to remain cool and dry.
- - You can just put the copyright symbol at the bottom of your website without having a legal copyright.
- - You don't tug on superman's cape, you don't spit into the wind, you don't pull the mask off that old lone ranger, and you don't mess around with Jim.
+
+ Welcome to my little corner of the Internet! My name is Jim Shepich (@epicshepich). I like to introduce myself as a jack-of-all-trades with a Master's in data science. My main interests include STEM, martial arts (especially jūjutsu), sci-fi and fantasy, tabletop and video gaming, cartoons and comics, and DIY, but I also love to branch out and learn new things! My dream is to become "The Most Interesting Man in the World."
+
+ This website started as a way for me to exercise and showcase my skills with vanilla HTML, JavaScript, CSS, and PHP. Now, it's just a matter of filling the site with content! My vision for this website is for it to serve as a gift to my future reincarnated self (if that's what happens) — a way to pass on the little tips and tricks, bits of wisdom, resources, and treasures I've accumulated over the course of my life (think new game plus). And if some other kindred spirits find something here that helps them on their journey, that's a bonus!
-
diff --git a/scripts/nav.php b/scripts/nav.php
index 3237512..65f4608 100644
--- a/scripts/nav.php
+++ b/scripts/nav.php
@@ -9,10 +9,16 @@ function page_comparator($a,$b){
}
function gen_nav_element($page){
+ $iframe = false;
+ //By default, echo the contents of a file instead of embedding it in an iframe.
if(isset($page->file)){
$href = "index.php?page=".$page->query_value;
$target = "_self";
//If the page is associated with a file, then point the navibar href to the file's query value.
+
+ $iframe = (isset($page->iframe)) ? true : false;
+ //If the page has the iframe attribute, then keep track of that.
+
} elseif(isset($page->link)) {
$href = $page->link;
$target = "_blank";