MinDocMini is a minimal computing platform for creating your own digital documentary editions. It makes it easy to quickly deploy a simple web page where you can display images of and text about your documentary material.
This ReadMe is meant to walk you through setting up your own digitial edition in a step by step fashion. This ReadMe assumes that you do not have experience with github. If you are already familiar with GitHub you might skip some steps.
-
Sign up for GitHub. You can sign up on this page by selecting the Sign Up button at the top of the page.
-
Establish a Repository with your Copy of MinDocMini in it. Scroll to the top of the screen until you find the 'Use this template' button. It will look like this:
This button will provide you with two options. Choose "Create a New Repository" and move on to the next step. -
Choose a name for your repository. A simple name is best.
-
Click "Create Repository" You should now have a repository attached to your GitHub account.
After this point you should work from your new repository
-
Go to the Settings Tab and Choose 'Pages.' Set the site to Deploy from Main Branch.
-
Return to this page
Edit: index.markdown
- Contains all page content in one file
- Use
# Headerfor main sections - Write content in standard markdown
Edit: _config.yml
title: Your Document Title
description: by Your NamePlace images in: assets/img/your-image.jpg
Create file: _mindoc_media/your-image.md
---
page: "section-name"
media_type: "image"
order: 1
---
Add to index.md where you want the image:
{% assign media = site.mindoc_media | where: "page", "section-name" %}
{% include media_next.html pages=media %}bundle exec jekyll serve - Preview locally
bundle exec jekyll build - Generate site