├── CNAME ├── ads.txt ├── _config.yml ├── favicon.ico ├── .gitignore ├── console ├── styles │ ├── account.css │ ├── modify.css │ ├── changelog.css │ ├── edit.css │ └── console.css ├── scripts │ ├── logout.js │ ├── login.js │ ├── base64.js │ ├── utf8.js │ ├── snarkdown.js │ ├── modify.js │ ├── changelog.js │ ├── jwt-decode.min.js │ ├── account.js │ ├── edit.js │ └── console.js ├── login.html ├── logout.html ├── changelog.html ├── modify.html ├── index.html └── edit.html ├── _includes ├── markdown │ ├── admin │ │ ├── requests.md │ │ ├── changelog.md │ │ ├── modify.md │ │ ├── console.md │ │ └── privacy.md │ ├── motd.md │ ├── tables │ │ ├── meme.md │ │ ├── competitive.md │ │ ├── deprecated.md │ │ └── brew.md │ ├── template.md │ ├── request.md │ ├── submit.md │ └── about.md ├── svg │ ├── colors │ │ ├── x.svg │ │ ├── u.svg │ │ ├── b.svg │ │ ├── g.svg │ │ ├── w.svg │ │ └── r.svg │ ├── back.svg │ ├── forward.svg │ ├── edit.svg │ ├── logo.svg │ ├── recommend.svg │ ├── not │ │ ├── recommend.svg │ │ ├── primer.svg │ │ ├── discord-logo.svg │ │ └── discord.svg │ ├── primer.svg │ ├── discord-logo.svg │ └── discord.svg ├── legal.html ├── head.html ├── console-navbar.html ├── javascript │ ├── dom.js │ ├── backend.js │ └── scryfall.js ├── loading.html ├── navbar.html ├── database.html ├── styles │ ├── database.css │ ├── main.css │ └── global.css └── scripts │ └── main.js ├── styles ├── 404.css ├── copyright.css ├── about.css ├── request.css └── submit.css ├── .github └── workflows │ └── json_validate.yaml ├── favicon.svg ├── scripts ├── about.js ├── request.js └── submit.js ├── 404.html ├── README.md ├── LICENSE ├── Gemfile ├── Gemfile.lock ├── about.html ├── copyright.html ├── _data └── decklist_schema.json ├── request.html ├── index.html └── submit.html /CNAME: -------------------------------------------------------------------------------- 1 | cedh-decklist-database.com -------------------------------------------------------------------------------- /ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-4373090976253918, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | collections_dir: _includes/markdown 2 | collections: 3 | - updates 4 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/averagewagon/cEDH-Decklist-Database/HEAD/favicon.ico -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-cache 4 | .jekyll-metadata 5 | vendor 6 | .directory 7 | .kate-swp 8 | -------------------------------------------------------------------------------- /console/styles/account.css: -------------------------------------------------------------------------------- 1 | #content h1, #content h1 a { 2 | text-align: center; 3 | color: white; 4 | margin: 64px auto; 5 | } 6 | -------------------------------------------------------------------------------- /_includes/markdown/admin/requests.md: -------------------------------------------------------------------------------- 1 | ## Requests 2 | The destination of the "Make a Request" form. Deleted requests are purged after 7 days. 3 | -------------------------------------------------------------------------------- /_includes/markdown/motd.md: -------------------------------------------------------------------------------- 1 | The submission deadline for the Tarkir -> Final Fantasy DDB update is May 31st, 2025 at 11:59 pm Eastern Time. Submissions after that date will be considered for the following update. 2 | -------------------------------------------------------------------------------- /_includes/svg/colors/x.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /_includes/markdown/tables/meme.md: -------------------------------------------------------------------------------- 1 | # Our meme section is deprecated. We will remove the category at a later date. We are not accepting new submissions for this category. 2 | 3 | If there are any questions about this choice, please visit our [Discord server](https://discord.gg/BXPyu2P). -------------------------------------------------------------------------------- /console/scripts/logout.js: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | (function() { "use strict"; 4 | window.addEventListener("load", init); 5 | 6 | // Initialization function 7 | function init() { 8 | window.localStorage.clear(); 9 | window.location.replace("/console/"); 10 | } 11 | 12 | })(); 13 | -------------------------------------------------------------------------------- /styles/404.css: -------------------------------------------------------------------------------- 1 | #content { 2 | flex-direction: column; 3 | align-items: center; 4 | } 5 | 6 | #content h1 { 7 | font-size: 38pt; 8 | } 9 | 10 | #content h2 { 11 | font-size: 28pt; 12 | } 13 | 14 | #content a { 15 | color: skyblue; 16 | font-size: 20pt; 17 | } 18 | -------------------------------------------------------------------------------- /_includes/markdown/tables/competitive.md: -------------------------------------------------------------------------------- 1 | If you're interested in new ideas and brews, please check out the Brewer's Corner (found under the 'section' filter). Before getting onto the main page, lists are initially displayed there. 2 | 3 | --- 4 | 5 | The main page showcases a selection of decks the DDB team has chosen as a snapshot of the cEDH environment. 6 | -------------------------------------------------------------------------------- /_includes/markdown/template.md: -------------------------------------------------------------------------------- 1 | # New Decks 2 | - DECK added to SECTION 3 | 4 | # New deck links 5 | - Added LIST to DECK 6 | 7 | # Modified Decks 8 | - Renamed OLDNAME to NEWNAME 9 | - Added a Discord server to DECK 10 | - Merged DECK1 and DECK2 11 | 12 | # Removed Decks 13 | - Deprecated DECK 14 | - Removed DECK 15 | 16 | # Recommendations 17 | - Recommended DECK 18 | - No longer recommending DECK -------------------------------------------------------------------------------- /_includes/markdown/admin/changelog.md: -------------------------------------------------------------------------------- 1 | ## Edit Changelog 2 | This page gives controls to modify the changelog on "About the DDB". After creating or editing a changelog post, there is a 30 minute cooldown to reduce site load. 3 | 4 | Changelogs are rendered using Markdown. If you are unfamiliar with Markdown, [Github has an excellent introductory guide](https://guides.github.com/features/mastering-markdown/). 5 | -------------------------------------------------------------------------------- /_includes/svg/back.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /_includes/svg/forward.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /_includes/legal.html: -------------------------------------------------------------------------------- 1 |
'+e(n(p[3]||p[4]).replace(/^\n+|\n+$/g,""))+"":p[6]?(g=p[6],g.match(/\./)&&(p[5]=p[5].replace(/^\d+/gm,"")),s=r(e(p[5].replace(/^\s*[>*+.-]/gm,""))),">"===g?g="blockquote":(g=g.match(/\./)?"ol":"ul",s=s.replace(/^(.*)(\n|$)/gm,"
"+n(p[16])+"":(p[17]||p[1])&&(l=c(p[17]||"--"))),m+=u,m+=l;return(m+o.substring(d)+a()).trim()}var t={"":["",""],_:["",""],"\n":["