├── templates ├── home.hbs ├── cip.hbs ├── table-of-contents.hbs ├── cips.hbs └── main.hbs ├── .gitignore ├── CIP-0001 ├── CIP_Flow.png └── README.md ├── BiweeklyMeetings ├── sequence_diagram.png ├── 09-08-2020.md ├── 08-04-2020.md ├── 07-01-2020.md ├── 08-25-2020.md ├── 08-11-2020.md ├── 10-20-2020.md ├── 10-06-2020.md ├── 07-15-2020.md ├── 09-22-2020.md ├── 11-17-2020.md ├── 11-03-2020.md ├── 12-08-2020.md └── 01-26-2021.md ├── scripts ├── serve.js └── build.js ├── package.json ├── CIP-0010 ├── registry.json ├── registry.schema.json └── CIP-0010.md ├── CIP-0003 ├── Byron.md ├── Icarus.md ├── Ledger.md └── CIP-0003.md ├── CIP-0012 ├── schema.json └── CIP-0012.md ├── CIP-0011 └── CIP-0011.md ├── CIP-1852 └── CIP-1852.md ├── cip-template.md ├── README.md ├── CIP-1853 └── CIP-1853.md ├── CIP-0007 ├── rewards.php └── CIP-0007.md ├── CIP-0015 └── CIP-0015.md ├── CIP-0013 └── CIP-0013.md ├── assets ├── images │ └── logo.svg └── css │ └── styles.css ├── CIP-0004 └── CIP-0004.md └── CIP-0005 ├── CIP-0005.md └── LICENSE /templates/home.hbs: -------------------------------------------------------------------------------- 1 | {{#> main }} 2 | {{{readme.html}}} 3 | {{/main}} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | /node_modules 3 | 4 | # Mac files 5 | .DS_Store -------------------------------------------------------------------------------- /CIP-0001/CIP_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivebinaries/CIPs/master/CIP-0001/CIP_Flow.png -------------------------------------------------------------------------------- /BiweeklyMeetings/sequence_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivebinaries/CIPs/master/BiweeklyMeetings/sequence_diagram.png -------------------------------------------------------------------------------- /CIP-0001/README.md: -------------------------------------------------------------------------------- 1 | # Cardano Improvement Proposal 1 2 | 3 | 4 | This directory contains all files pertaining to **CIP 1 - "CIP process"** 5 | 6 | Please refer to [CIP-0001.md](./CIP-0001.md). 7 | 8 | -------------------------------------------------------------------------------- /templates/cip.hbs: -------------------------------------------------------------------------------- 1 | {{#> main }} 2 |
Contents
5 | {{> table-of-contents items=cip.tableOfContents}} 6 || Number | 6 |Title | 7 |Created | 8 |Authors | 9 |Status | 10 |
|---|---|---|---|---|
| CIP {{cip.data.CIP}} | 14 |{{{cip.data.Title}}} | 15 |{{dateFormat cip.data.Created "DD MMMM YYYY"}} | 16 |17 | {{{getAuthors cip.data.Authors}}} 18 | | 19 |{{cip.data.Status}} | 20 |
is in a , reset it's formatting to blend in */
287 | background: inherit;
288 | font-size: inherit;
289 | color: inherit;
290 | border: 0;
291 | padding: 0;
292 | margin: 0;
293 | }
294 |
295 | code pre {
296 | /* When is in a , reset it's formatting to blend in */
297 | display: inline;
298 | background: inherit;
299 | font-size: inherit;
300 | color: inherit;
301 | border: 0;
302 | padding: 0;
303 | margin: 0;
304 | }
305 |
306 | details {
307 | /* Make the look more "clickable" */
308 | padding: .6rem 1rem;
309 | background: var(--nc-bg-2);
310 | border: 1px solid var(--nc-bg-3);
311 | border-radius: 4px;
312 | }
313 |
314 | summary {
315 | /* Makes the look more like a "clickable" link with the pointer cursor */
316 | cursor: pointer;
317 | font-weight: bold;
318 | }
319 |
320 | details[open] {
321 | /* Adjust the padding while open */
322 | padding-bottom: .75rem;
323 | }
324 |
325 | details[open] summary {
326 | /* Adjust the padding while open */
327 | margin-bottom: 6px;
328 | }
329 |
330 | details[open]>*:last-child {
331 | /* Resets the bottom margin of the last element in the while is opened. This prevents double margins/paddings. */
332 | margin-bottom: 0;
333 | }
334 |
335 | dt {
336 | font-weight: bold;
337 | }
338 |
339 | dd::before {
340 | /* Add an arrow to data table definitions */
341 | content: '→ ';
342 | }
343 |
344 | hr {
345 | /* Reset the border of the
separator, then set a better line */
346 | border: 0;
347 | border-bottom: 1px solid var(--nc-bg-3);
348 | margin: 1rem auto;
349 | }
350 |
351 | fieldset {
352 | margin-top: 1rem;
353 | padding: 2rem;
354 | border: 1px solid var(--nc-bg-3);
355 | border-radius: 4px;
356 | }
357 |
358 | legend {
359 | padding: auto .5rem;
360 | }
361 |
362 | table {
363 | /* border-collapse sets the table's elements to share borders, rather than floating as separate "boxes". */
364 | border-collapse: collapse;
365 | width: 100%
366 | }
367 |
368 | td,
369 | th {
370 | border: 1px solid var(--nc-bg-3);
371 | text-align: left;
372 | padding: .5rem;
373 | word-break: normal;
374 | }
375 |
376 | th {
377 | background: var(--nc-bg-2);
378 | white-space: nowrap;
379 | }
380 |
381 | tr:nth-child(even) {
382 | /* Set every other cell slightly darker. Improves readability. */
383 | background: var(--nc-bg-2);
384 | }
385 |
386 | table caption {
387 | font-weight: bold;
388 | margin-bottom: .5rem;
389 | }
390 |
391 | textarea {
392 | /* Don't let the