Skip to content

Schol template for an Athabasca University Master of Science in Information Systems thesis mini proposal.

Notifications You must be signed in to change notification settings

schol-js/schol-template-athabasca-university-mscis-thesis-mini-proposal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

schol-template-athabasca-university-mscis-thesis-mini-proposal

schol template for an Athabasca University Master of Science in Information Systems thesis mini proposal.

Demo

thumbnail

Usage

Use this schol template to get started writing a thesis mini-proposal for an Athabasca University Master of Science in Information Systems program. You can also use this template a starting point for developing new templates.

Create a new schol project

To create a new project using this template, create a new folder for the project, navigate into it, and initialize a new schol project with schol init:

mkdir assignment
cd assignment
schol init --template schol-template-athabasca-university-mscis-thesis-mini-proposal

Create a new template

To use this template as a starting point for a new template, fork, clone, or copy this repo, and hack away!

You can then either publish your template on npm, or simply use it locally.

A few things to keep in mind:

  • To initialize your template by name rather than by path while it is in development, you must first npm link it from the directory in which you wish to initialize it:
// From your template directory -- schol-template-custom
npm link
cd ..
mkdir new-project
cd new-project
npm link schol-template-custom
// Now you can initialize it
schol init --template schol-template-custom
  • Make sure your package name starts with schol-template- to make it easy to find

  • The main property in package.json must point to a valid EJS template located in the root of the template/ directory.

  • Anything placed in src/ will be copied to the src/ folder of any schol project initialized with the template.

  • Test and develop your template by running the following from within your template directory:

    npm link
    npm link schol-template-default // Or whatever your template is
    schol edit

    This will use the current directory (your template directory) as the template.

  • Include example output of your template in the docs folder with schol render and set up your GitHub repository to publish from the docs/ folder in your template project.. This will allow users to see what your template looks like before they use it.

  • Include a screenshot of your template output in media/example.png. Use a square aspect ratio with a resolution of at least 898x898.

  • Once published to npm and GitHub, add your template to the schol templates list!

Credits

About

Schol template for an Athabasca University Master of Science in Information Systems thesis mini proposal.

Resources

Stars

Watchers

Forks

Packages

No packages published