-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathdefault.html
More file actions
127 lines (127 loc) · 5.44 KB
/
default.html
File metadata and controls
127 lines (127 loc) · 5.44 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
{% if page.permalink %}<link rel="canonical" href="{{ page.permalink | prepend: site.base_url }}">{% endif %}
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta property="og:title" content="{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}" />{% if page.description %}
<meta property="og:description" content="{{ page.description }}" />{% endif %}{% if page.image %}
<meta property="og:image" content="{{ page.image | prepend: site.base_url }}" />{% endif %}{% if page.permalink %}
<meta property="og:url" content="{{ page.permalink | prepend: site.base_url }}" />{% endif %}
<meta property="og:site_name" content="{{ site.title }}" />
<meta property="og:locale" content="en" />
<meta name="theme-color" content="#7C4DFF">
<link type="application/atom+xml" rel="alternate" href="{{ site.base_url }}/feed.xml" title="{{ site.title }}" />
<link rel="stylesheet" href="/assets/styles.css" />
</head>
<body vocab="http://schema.org/">
<header class="header">
<address class="homepage-link">
<a href="/"><img alt="Solid logo" src="/assets/img/solid-emblem.svg" /> Solid</a>
</address>
<nav class="main-nav">
<ul>
<li><a href="/about">About</a></li>
<li><a href="/for_users">For Users</a></li>
<li><a href="/for_developers">For Developers</a></li>
<li><a href="/for_organisations">For Organisations</a></li>
<li><a href="/community">Community</a></li>
</ul>
</nav>
<button class="hamburger-menu" aria-label="Toggle navigation menu">
<span></span>
<span></span>
<span></span>
</button>
</header>
<div class="event-banner" role="region" aria-label="Event announcement">
<span aria-hidden="true">📣</span> Announcing <a href="/solid26">Solid26</a> – the first bundled release of the Solid specifications
</div>
{% if page.breadcrumbs %}
<nav class="breadcrumb" aria-label="breadcrumbs">
<ol>
<li><a href="/">Home</a></li>
{% for breadcrumb in page.breadcrumbs %}
{% if forloop.last %}
<li><a href="#" aria-current="page">{{ breadcrumb.title }}</a></li>
{% else %}
<li><a href="{{ breadcrumb.url }}">{{ breadcrumb.title }}</a></li>
{% endif %}
{% endfor %}
</ol>
</nav>{% endif %}
<main>
{{ content }}
</main>
<footer class="footer">
<dl class="footer-nav">
<dt>Solid</dt>
<dd>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/for_users">For Users</a></li>
<li><a href="/for_developers">For Developers</a></li>
<li><a href="/for_organisations">For Organisations</a></li>
<li><a href="/community">Community</a></li>
</ul>
</dd>
<dt>What's New</dt>
<dd>
<ul>
<li><a href="/newsletter">Newsletter</a></li>
<li><a href="/press">Press</a></li>
<li><a href="/events">Solid Events</a></li>
</ul>
</dd>
<dt>Getting Involved</dt>
<dd>
<ul>
<li><a href="/code_of_conduct">Code of Conduct</a></li>
<li><a href="https://forum.solidproject.org">Forum</a></li>
<li><a href="/apps">Solid Applications</a></li>
<li><a href="/TR">Specifications</a></li>
</ul>
</dd>
<dt>More</dt>
<dd>
<ul>
<li><a href="/FAQ">FAQ</a></li>
<li><a href="https://service.theodi.org/help/1476250723">Feedback & Support</a></li>
<li><a href="/license">License</a></li>
<li><a href="/logo_usage_guidelines">Logo usage guidelines</a></li>
<li><a href="/team">Team</a></li>
<li><a href="/terms">Terms of Use</a></li>
</ul>
</dd>
</dl>
<nav class="social-nav">
<ul>
<li class="homepage-link">
<a href="/" title="Solid Project Homepage"><img alt="Solid" src="/assets/img/solid-emblem.svg" /></a>
</li>
<li>
<a href="mailto:solid+info@theodi.org" title="Get in touch for Info about Solid">solid+info@theodi.org</a>
</li>
<li>
<a href="https://github.com/solid/" title="Solid on GitHub"><img src="/assets/img/icon/github.svg" alt="GitHub" class="icon" /></a>
</li>
<li>
<a href="https://matrix.to/#/%23solid_project%3Amatrix.org" title="Solid Project on Matrix"><img src="/assets/img/icon/matrix.svg" alt="Matrix" class="icon" /></a>
</li>
<li>
<a href="https://share.hsforms.com/1ZMMECk5wT2qYhxouAW-zpQg1jy" title="Signup to receive news about Solid"><img src="/assets/img/icon/envelope.svg" alt="Newsletter" class="icon" /></a>
</li>
<li>
<a href="https://vimeo.com/solidworld" title="Solid on Vimeo"><img src="/assets/img/icon/vimeo-v.svg" alt="Vimeo" class="icon" /></a>
</li>
<li>
<a href="/feed.xml" title="Solid Project RSS feed"><img src="/assets/img/icon/rss.svg" alt="RSS" class="icon" /></a>
</li>
</ul>
</nav>
</footer>
<script src="/assets/scripts.js"></script>
</body>
</html>