|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="{{ site.lang | default: "en-US" }}"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + |
| 8 | + {% seo %} |
| 9 | + <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> |
| 10 | + <link rel="alternate" type="application/rss+xml" title="{{ site.title }} Blog" href="{{ "/rss.xml" | relative_url }}"> |
| 11 | + <!--[if lt IE 9]> |
| 12 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> |
| 13 | + <![endif]--> |
| 14 | + {% include head-custom.html %} |
| 15 | + </head> |
| 16 | + <body> |
| 17 | + <div class="spec-header"> |
| 18 | + <div class="spec-header-content"> |
| 19 | + <span class="spec-header-title">Specification:</span> |
| 20 | + <a href="https://json-structure.github.io/core/draft-vasters-json-structure-core.html">Core</a> |
| 21 | + <span class="spec-sep">|</span> |
| 22 | + <a href="https://json-structure.github.io/import/draft-vasters-json-structure-import.html">Import</a> |
| 23 | + <span class="spec-sep">|</span> |
| 24 | + <a href="https://json-structure.github.io/alternate-names/draft-vasters-json-structure-alternate-names.html">Alternate Names</a> |
| 25 | + <span class="spec-sep">|</span> |
| 26 | + <a href="https://json-structure.github.io/units/draft-vasters-json-structure-units.html">Symbols, Units, Currencies</a> |
| 27 | + <span class="spec-sep">|</span> |
| 28 | + <a href="https://json-structure.github.io/validation/draft-vasters-json-structure-validation.html">Validation</a> |
| 29 | + <span class="spec-sep">|</span> |
| 30 | + <a href="https://json-structure.github.io/conditional-composition/draft-vasters-json-structure-cond-composition-02/draft-vasters-json-structure-cond-composition.html">Conditional Composition</a> |
| 31 | + </div> |
| 32 | + </div> |
| 33 | + <div class="wrapper"> |
| 34 | + <header> |
| 35 | + <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> |
| 36 | + |
| 37 | + {% if site.logo %} |
| 38 | + <img src="{{site.logo | relative_url}}" alt="Logo" /> |
| 39 | + {% endif %} |
| 40 | + |
| 41 | + <p>{{ site.description | default: site.github.project_tagline }}</p> |
| 42 | + |
| 43 | + {% if site.github.is_project_page %} |
| 44 | + <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> |
| 45 | + {% endif %} |
| 46 | + |
| 47 | + <nav class="sidebar-nav"> |
| 48 | + <h3>SDKs</h3> |
| 49 | + <ul> |
| 50 | + <li><a href="{{ "/sdks/typescript.html" | relative_url }}">TypeScript/JavaScript</a></li> |
| 51 | + <li><a href="{{ "/sdks/python.html" | relative_url }}">Python</a></li> |
| 52 | + <li><a href="{{ "/sdks/dotnet.html" | relative_url }}">.NET (C#)</a></li> |
| 53 | + <li><a href="{{ "/sdks/java.html" | relative_url }}">Java</a></li> |
| 54 | + <li><a href="{{ "/sdks/go.html" | relative_url }}">Go</a></li> |
| 55 | + <li><a href="{{ "/sdks/rust.html" | relative_url }}">Rust</a></li> |
| 56 | + <li><a href="{{ "/sdks/ruby.html" | relative_url }}">Ruby</a></li> |
| 57 | + <li><a href="{{ "/sdks/perl.html" | relative_url }}">Perl</a></li> |
| 58 | + <li><a href="{{ "/sdks/php.html" | relative_url }}">PHP</a></li> |
| 59 | + <li><a href="{{ "/sdks/swift.html" | relative_url }}">Swift</a></li> |
| 60 | + <li><a href="{{ "/sdks/c.html" | relative_url }}">C</a></li> |
| 61 | + </ul> |
| 62 | + |
| 63 | + <h3>Resources</h3> |
| 64 | + <ul> |
| 65 | + <li><a href="{{ "/blog/" | relative_url }}">Blog</a></li> |
| 66 | + <li><a href="{{ "/codegen.html" | relative_url }}">Code Generation</a></li> |
| 67 | + </ul> |
| 68 | + </nav> |
| 69 | + |
| 70 | + {% if site.show_downloads %} |
| 71 | + <ul class="downloads"> |
| 72 | + <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> |
| 73 | + <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> |
| 74 | + <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> |
| 75 | + </ul> |
| 76 | + {% endif %} |
| 77 | + </header> |
| 78 | + <section class="blog-post"> |
| 79 | + <article> |
| 80 | + <header class="post-header"> |
| 81 | + <h1 class="post-title">{{ page.title }}</h1> |
| 82 | + <p class="post-meta"> |
| 83 | + <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time> |
| 84 | + {% if page.author %} • {{ page.author }}{% endif %} |
| 85 | + </p> |
| 86 | + </header> |
| 87 | + |
| 88 | + <div class="post-content"> |
| 89 | + {{ content }} |
| 90 | + </div> |
| 91 | + </article> |
| 92 | + |
| 93 | + <nav class="post-navigation"> |
| 94 | + <a href="{{ "/blog/" | relative_url }}">← Back to Blog</a> |
| 95 | + </nav> |
| 96 | + </section> |
| 97 | + </div> |
| 98 | + <footer class="page-footer"> |
| 99 | + {% if site.github.is_project_page %} |
| 100 | + <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> |
| 101 | + {% endif %} |
| 102 | + <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> |
| 103 | + </footer> |
| 104 | + <script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> |
| 105 | + </body> |
| 106 | +</html> |
0 commit comments