forked from randyau/datawebring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onionring-variables.js
31 lines (25 loc) · 1.3 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
// 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
var sites = [
'https://www.randyau.com/',
'https://vickiboykis.com/',
'https://www.counting-stuff.com/',
'https://gecky.me/',
'https://qethanm.cc/datawebring/',
];
//the name of the ring
var ringName = 'Data People Writing Stuff';
/* 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 = 'data-ring-dot-list';
//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://randyau.github.io/datawebring/index.html';
//should the widget include a random button?
var useRandom = true;