-
Notifications
You must be signed in to change notification settings - Fork 0
/
onionring-variables.js
33 lines (26 loc) · 1.4 KB
/
onionring-variables.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// onionring.js is made up of four files - onionring-widget.js, onionring-index.js, onionring-variables.js (this one!), and onionring.css
// it's licensed under the cooperative non-violent license (CNPL) v4+ (https://thufie.lain.haus/NPL.html)
// it was originally made by joey + mord of allium (蒜) house, last updated 2020-11-24
// === ONIONRING-VARIABLES ===
//this file contains the stuff you edit to set up your specific webring
//the full URLs of all the sites in the ring
//add your website here, make sure to read README
var sites = [
'https://kaiznike.github.io/',
'http://example.com/',
'http://example.com/',
'http://example.com/'
];
//the name of the ring
var ringName = 'The Radical Alliance of Free Stars';
/* the unique ID of the widget. two things to note:
1) make sure there are no spaces in it - use dashes or underscores if you must
2) remember to change 'webringid' in the widget code you give out and all instances of '#webringid' in the css file to match this value!*/
var ringID = 'rad-allies-free-stars';
//should the widget include a link to an index page?
var useIndex = true;
//the full URL of the index page. if you're not using one, you don't have to specify anything here
var indexPage = 'https://kaiznike.github.io/Radical-Alliance-of-Free-Stars-Webring/';
//should the widget include a random button?
var useRandom = true;
var indexBanner = indexPage + "Projects/RAFSicon.gif"