Men-In-Brown / Jobify

https://men-in-brown.github.io/Jobify/
Apache License 2.0
0 stars 0 forks source link

How to update a page to the new format #13

Open BobTheFarmer opened 5 months ago

BobTheFarmer commented 5 months ago

Instructions for changing your old page into a new page

Follow these to turn a markdown file into html with formatting already set up by

1: Change file extension from .md to .html 2: Remove contents of font matter from the top. If you have to font matter add empty font matter. It should look like this:

---
---

3: Add the general.css to your header

<head>
    <link rel="stylesheet" type="text/css" href="general.css">
</head>

4: Add the header to the top of the body

<body>
      {% include header2.html %}
      <!-- Your HTML -->
</body>