-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
57 lines (48 loc) · 2.55 KB
/
index.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
<html ng-app="tlDocsApp">
<head>
<title ng-bind="(title ? title + ' // ' : '') + 'TL-Schema Explorer'">TL-Schema Explorer</title>
<link href="https://fonts.googleapis.com/css?family=Fira+Mono" rel="stylesheet">
<link rel="stylesheet" href="/css/styles.css?v14">
<link rel="stylesheet" href="/css/fonts.css">
<link rel="stylesheet" href="/css/rgs.css">
<link rel="stylesheet" href="/css/vs2015.css">
<link rel="shortcut icon" href="/img/telegram-circle.png">
<script src="/js/schema.js?v4"></script>
<script src="/js/showdown.min.js"></script>
<script src="/js/angular.min.js"></script>
<script src="/js/ngsanitize.min.js"></script>
<script src="/js/ngroute.min.js"></script>
<script src="/js/ngmarkdown.js"></script>
<script src="/js/highlight.min.js"></script>
<script src="/js/nghighlight.min.js"></script>
<script src="/js/app.js?v11"></script>
<script async defer data-website-id="74493f73-a9f7-4bb8-80e9-c2d8c00e1abe" src="https://umami.horner.tj/umami.js"></script>
<meta property="og:title" content="TL-Schema Explorer">
<meta property="og:site_name" content="TL-Schema Explorer">
<meta property="og:type" content="website">
<meta property="og:description" content="Search the Telegram API schema in a beautiful way.">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<div class="header-inner">
<a href="#!/" class="home">TL-Schema Explorer (Layer 158)</a>
<div class="header-right">
<a href="/resources/schema.json" class="ic-download">schema.json</a>
<a href="/resources/schema.tl" class="ic-download">schema.tl</a>
<input type="text" placeholder="Search..." ng-hide="hideGlobalSearch" class="header-search" ng-model="globalSearch" ng-change="doSearch()">
</div>
</div>
</header>
<div class="content" ng-view></div>
<footer>
<div class="footer-inner">
© <a href="https://tjhorner.com">TJ Horner</a> 2017-2022 — This is a fan site that is not affiliated with Telegram in any way.
<span style="display: inline-block; vertical-align: middle; margin-left: 5px; position: relative; bottom: 1px;">
<a class="github-button" href="https://github.com/tjhorner/schema.tl" data-icon="octicon-star" data-show-count="true" aria-label="Star tjhorner/schema.tl on GitHub">Star on GitHub</a>
</span>
</div>
</footer>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>