-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (48 loc) · 2.3 KB
/
about.html
File metadata and controls
53 lines (48 loc) · 2.3 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
---
layout: default
title: About AnySoftKeyboard
description: Meet the team behind AnySoftKeyboard. Open source keyboard for Android.
---
<section class="hero-bg text-white text-center py-10 md:py-14">
<div class="max-w-4xl mx-auto px-4">
<h1 class="text-3xl md:text-4xl font-bold">Our <span class="text-purple-200">Team</span></h1>
<p class="text-lg text-white/80 mt-2">The people behind AnySoftKeyboard</p>
</div>
</section>
<section class="py-12 md:py-16 bg-white">
<div class="max-w-5xl mx-auto px-4">
<ul class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8" role="list">
{% for member in site.staff_members %}
{% unless member.name == "_defaults" %}
<li class="staff-card">
<figure class="w-28 h-28 mx-auto mb-4 rounded-full overflow-hidden shadow-lg ring-4 ring-white">
<img src="{{ member.image_path }}" alt="{{ member.name }}" loading="lazy" class="w-full h-full object-cover" width="112" height="112">
</figure>
<h3 class="text-xl font-bold text-gray-900 mb-1">
{% if member.link %}
<a href="{{ member.link }}" target="_blank" rel="noopener noreferrer" class="hover:text-purple-700">{{ member.name }}</a>
{% else %}
{{ member.name }}
{% endif %}
</h3>
<p class="text-gray-500 text-sm">{{ member.position }}</p>
</li>
{% endunless %}
{% endfor %}
</ul>
<div class="mt-16 bg-gray-50 border border-gray-200 rounded-2xl p-8">
<h2 class="text-2xl font-bold text-gray-900 mb-4">License</h2>
<p class="text-gray-600 mb-4">AnySoftKeyboard is licensed under the Apache License, Version 2.0</p>
<pre class="bg-gray-900 text-gray-300 p-4 rounded-lg text-sm overflow-x-auto">Copyright 2018 Menny Even-Danan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.</pre>
</div>
</div>
</section>