-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
124 lines (108 loc) · 5.28 KB
/
Copy pathtemplate.html
File metadata and controls
124 lines (108 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ category }} / Sanchaya - Kannada language computing projects and resources</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Projects from Sanchaya — maintained and tracked for Kannada language technology developments across FOSS." />
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="image_src" href="https://sanchaya.page/static/thumb.png" />
<meta property="og:title" content="{{ category }} / Sanchaya projects" />
<meta property="og:description" content="Projects from Sanchaya — maintained and tracked for Kannada language technology developments across FOSS." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sanchaya.page/{% if category == 'All Projects' %}index{% else %}{{ category | lower }}{% endif %}.html" />
<meta property="og:image" content="https://sanchaya.page/static/thumb.png" />
<link rel="icon" type="image/png" href="https://fonts.sanchaya.net/img/favicon-32x32.png">
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:400&display=swap' rel='stylesheet' type='text/css' />
<link href="static/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav class="nav">
<div class="wrap">
<header class="header">
<a href="#" id="burger"><span></span><span></span><span></span></a>
<div class="logo">
<a href="/"><img src="https://fonts.sanchaya.net/img/app-icon-light.png" alt="Sanchaya" /></a>
<p class="slogan">Projects from Sanchaya — maintained and tracked for Kannada language technology developments across FOSS.</p>
</div>
<div class="intro">
<p><input id="search" class="search" type="text" placeholder="Search this page" /></p>
</div>
</header>
</div>
</nav>
<div class="wrap">
<div class="container">
<section class="sidebar" id="sidebar">
<ul class="index">
<li class="{% if category == 'All Projects' %}selected{% endif %}"><a href="index.html">All ({{ list | length }})</a></li>
{% for c in categories %}
<li class="{% if c == category %}selected{% endif %}"><a href="{{ c | lower }}.html">{{ c }} ({{ categories[c] }})</a></li>
{% endfor %}
</ul>
</section>
<section class="content">
{% if ((list_tags | length) + (list_languages | length)) > 0 %}
<a href="#" id="toggle-filters">Filter →</a>
{% endif %}
<section class="section" id="organisations">
<h3>{{ category }} ({{ list | length }})</h3>
<div class="filters" id="filters">
{% if list_languages | length > 1 %}
<div class="languages">
{% for l in list_languages %}
<label id="lang-{{ l }}">
<input type="checkbox" class="filter-language" for="lang-{{ l }}" checked value="{{ l | lower }}" />{{ l }}
</label>
{% endfor %}
<a href="#" class="toggle-filters" data-target="language" data-state="on">← Toggle</a>
</div>
{% endif %}
{% if list_tags | length > 1 %}
<div class="tags">
{% for l in list_tags %}
<label id="tag-{{ l }}">
<input type="checkbox" class="filter-tag" for="tag-{{ l }}" checked value="{{ l | lower }}" />{{ l }}
</label>
{% endfor %}
<a href="#" class="toggle-filters" data-target="tag" data-state="on">← Toggle</a>
</div>
{% endif %}
</div>
<ul id="items">
{% for i in list %}
<li class="item"
data-languages="{% for v in i.languages %}{{ v | lower}}|{% endfor %}"
data-tags="{% for v in i.tags %}{{ v | lower}}|{% endfor %}">
<h2 class="title">
{% for t in i.tags %}
<span class="tag">{{ t }}</span>
{% endfor %}
<a href="{{ i.url }}" class="link">{{ i.name }}</a>
</h2>
<p class="description">{{ i.description }}</p>
{% if i.is_cname %}
<p class="url"><a href="{{ i.url }}">{{ i.url_pretty }}</a></p>
{% else %}
<p class="url github"><a href="{{ i.url }}"><svg class="github-icon" viewBox="0 0 16 16" fill="currentColor"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8"/></svg> {{ i.url_pretty }}</a></p>
{% endif %}
<div class="tags">
{% for l in i.languages %}
<span class="tag lang">{{ l }}</span>
{% endfor %}
<a href="" class="reveal">+{{ (i.languages | length) - 5 }} ← View all</a>
</div>
</li>
{% endfor %}
</ul>
</section>
</section><!-- content -->
</div><!-- container -->
<footer>
Edit this page at <a href="https://github.com/sanchaya/sanchaya.page">sanchaya/sanchaya.page</a>
— Sanchaya — <a href="https://sanchaya.org">sanchaya.org</a>
</footer>
<script src="static/main.js"></script>
</div>
</body>
</html>