Dads Site Conversion | part 5

May 30, 2022

static main site

to this point, all of my attention has been on the wordpress store. i rebuilt the site using jekyll and the creative theme.

this is the index layout now. it has the illusion of being much more managable just by segmenting the sections into their own html files.

<!DOCTYPE html>
<html lang="en">

{% include head.html %}

<body id="page-top">
  {% include nav.html %}
  {% include header.html %}
  {% include meet-bruce.html %}
  {% include connections.html %}
  {% include portfolio.html %}
  {% include store.html %}
  {% include contact.html %}
  {% include scripts.html %}
</body>

</html>

i had some trouble getting the css file to propogate. my browser is caching the file and will not refresh it. i tried a ton of solutions, but none of them worked except one, very hacky, fix. i saw it called ‘cache spoofing’. you add a query string to the css link in the head of the page file. it can be anything, arbitrary. I still dont have an actual solution to this. you can supposedly disable caching in the network tab of the developer options but not even this works in my case.

 <link rel="stylesheet" href="css/main.css?fi3f9vaefkl342" type="text/css">

the site is completely reconstructed and live on the site and i’m happy with it.

still to go