Developing templates
Developing a nuken Template is easy. We've included the default template file welcome_to_nuken.js
as an example below - let's take a look.
Required properties
These are most definitely required, we're not messing around. Your content will not function without them. 😐
codename
- Set this string to whatever you've called your declared template object. For example, setcodename
towelcome_to_nuken
if you're eventually going topush_template(welcome_to_nuken)
. This just ensures that nuken can create page elements using the name of your template object.
icon
- The location of your template/s preview icon. nuken begins looking in thecontent/templates
directory, so relative file paths are allowed here.
style
- Whatever's entered here will be written to the code box for inline styling.
script
- Whatever's entered here will be written to the code box for scripts.
markup
- Enter the project's HTML or other markup here, and it will be written to the markup code box.
Optional properties
title
- The name of your template, as it will appear in the Templates Menu.
location
- Your template's location. Is it on the user's device? Was it fetched from an online location?
online
- Does your template make use of any resources that require an internet connection? If so, set this totrue.
Otherwise set it tofalse
.
secure
- If your resource is located on the user's device, or is fetched from anhttps
location, let users know by setting this totrue.
Otherwise this isfalse
.
visit
- Enter a URL the user can visit when they click "Visit Creator". This could be your homepage, or a nuken Shop page.
description
- Tell us about your template. This will show up as your template's description in the Templates Menu.
stylebox_selection
- If your template makes use of a resource that isn't just plain CSS, enter itscodename
here. If you're not sure what a resource'scodename
is, read this.
meta
- If your project makes use of custommeta
tags, input them here. This information will show up in the Project Config Menu.
scriptbox_selection
- If your template makes use of a resource that isn't just plain JavaScript, enter itscodename
here. If you're not sure what a resource'scodename
is, read this.
donate
- Enter a URL the user can visit when they click "Donate". This could be a link to a donation page. If you don't have a donation page, leave this string blank.
view
- When the user clicks "View" in the Templates Menu, this is the page they will see. Enter the link (or file path) to your template file. Remember, nuken starts looking in thecontent/templates
directory (where your template pack file will be located).
audience
- If your template project has its own target audience, this information is written to the proper input box in the Project Config Menu.
author
- If your template project has its own author, this information is written to the proper input box in the Project Config Menu.
import_description
- If your template project has its own description, this information is written to the proper input box in the Project Config Menu. This "shoutout" is displayed onscreen when someone imports your project. For more information about Project Config Menu options, read this.
Last updated
Was this helpful?