This repository has been archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index-tr.html
90 lines (87 loc) · 2.67 KB
/
index-tr.html
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
---
layout: index
title: TWRP Builder
lang: tr
permalink: /tr/
update: 16/02/2018
---
{% assign translate = site.data.translations.lang[page.lang] %}
<!-- Banner -->
<section id="banner">
<img style="padding: 0px 0px; display: none"></img><br>
<div class="bannerimg"></div>
<p>{{translate.slogan}}</p>
</section>
<!-- One -->
<section id="one" class="wrapper">
<div class="inner">
<div class="flex flex-3">
<article>
<header>
<h3>{{translate.checkgithub}}</h3>
</header>
<p>{{translate.projectos}}</p>
<footer>
<a href="https://github.com/TwrpBuilder/TwrpBuilder" class="button special">{{translate.visit}}</a>
</footer>
</article>
<article>
<header>
<h3>{{translate.checkxda}}</h3>
</header>
<p>{{translate.askonxda}}</p>
<footer>
<a href="https://forum.xda-developers.com/android/apps-games/twrpbuilder-t3744253" class="button special">{{translate.visit}}</a>
</footer>
</article>
<article id="article_download">
<header>
<h3>{{translate.dlta}}</h3>
</header>
<p>{{translate.needlatest}}</p>
<footer>
<a id="download" href="https://play.google.com/store/apps/details?id=com.github.TwrpBuilderF" target="_blank" class="button special">{{translate.download}}</a>
</footer>
</article>
</div>
</div>
</section>
<!-- Two -->
<section id="two" class="wrapper style1 special">
<div class="inner">
<header>
<h2>{{translate.contributors}}</h2>
<p>{{translate.contributingtoproject}}</p>
</header>
<div id="contributors_inner" class="flex flex-4">
<script>
$.getJSON("https://api.github.com/orgs/twrpbuilder/members",function(contributors) {
var asset = contributors[0];
var content = '';
$.each(contributors, function(key, val) {
content+='<div class="box person">'
content+='<a href='+val.html_url+'>'
content+='<div class="image round">'
content+='<img src='+val.avatar_url+' alt="Person 4" height="143px" width="143px"/>'
content+='</div>'
content+='<h3>'+val.login+'</h3>'
content+='</a>'
content+='</div>'
});
document.getElementById("contributors_inner").innerHTML = content;
});
</script>
</div>
</div>
</section>
<!-- about -->
<section id="about" class="wrapper special">
<div class="inner">
<header class="align-center">
<h2>{{translate.about}}</h2>
<p></p>
</header>
<h3>{{translate.aboutdesc}}</h3>
<a href="#article_download">{{translate.dlnow}}</a>
</div>
</section>