datawebring

A webring for data people who write
git clone https://git.eamoncaddigan.net/datawebring.git
Log | Files | Refs | README

onionring-variables.js (1721B)


      1 // onionring.js is made up of four files - onionring-widget.js, onionring-index.js, onionring-variables.js (this one!), and onionring.css
      2 // it's licensed under the cooperative non-violent license (CNPL) v4+ (https://thufie.lain.haus/NPL.html)
      3 // it was originally made by joey + mord of allium (蒜) house, last updated 2020-11-24
      4 
      5 // === ONIONRING-VARIABLES ===
      6 //this file contains the stuff you edit to set up your specific webring
      7 
      8 //the full URLs of all the sites in the ring
      9 var sites = [
     10     'https://www.randyau.com/',
     11     'https://vickiboykis.com/',
     12     'https://www.counting-stuff.com/',
     13     'https://gecky.me/',
     14     'https://qethanm.cc/datawebring/',
     15     'https://mlops.systems/',
     16     'https://e2eml.school/',
     17     'https://blog.harterrt.com/',
     18     'https://www.jessemostipak.com/',
     19     'https://elliotgunn.github.io/',
     20     'https://radbrt.com',
     21     'https://simon.podhajsky.net/blog/',
     22     'https://www.heltweg.org/',
     23     'https://emilyriederer.com/',
     24     'https://kylestratis.com',
     25     'https://www.eamoncaddigan.net/'
     26 ];
     27 
     28 //the name of the ring
     29 var ringName = 'Data People Writing Stuff';
     30 
     31 /* the unique ID of the widget. two things to note:
     32  1) make sure there are no spaces in it - use dashes or underscores if you must
     33  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!*/
     34 var ringID = 'data-ring-dot-list';
     35 
     36 //should the widget include a link to an index page?
     37 var useIndex = true;
     38 //the full URL of the index page. if you're not using one, you don't have to specify anything here
     39 var indexPage = 'https://randyau.github.io/datawebring/index.html';
     40 
     41 //should the widget include a random button?
     42 var useRandom = true;