2017-08-22 03:31:39 +02:00
|
|
|
<html ng-app="tlDocsApp">
|
|
|
|
<head>
|
2017-09-04 00:07:27 +02:00
|
|
|
<title ng-bind="title ? title + ' // ' : '' + 'TL-Schema Explorer'">TL-Schema Explorer</title>
|
2017-08-22 04:52:56 +02:00
|
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono" rel="stylesheet">
|
2017-08-22 08:01:32 +02:00
|
|
|
<link rel="stylesheet" href="/css/styles.css?v11">
|
2017-08-22 03:39:13 +02:00
|
|
|
<link rel="stylesheet" href="/css/fonts.css">
|
2017-08-22 03:31:39 +02:00
|
|
|
<link rel="stylesheet" href="/css/rgs.css">
|
2017-08-22 05:28:11 +02:00
|
|
|
<link rel="shortcut icon" href="/img/telegram-circle.png">
|
2017-08-22 04:52:56 +02:00
|
|
|
|
2017-08-22 03:31:39 +02:00
|
|
|
<script src="/js/schema.js"></script>
|
2017-08-22 06:54:54 +02:00
|
|
|
<script src="/js/showdown.min.js"></script>
|
2017-08-22 03:31:39 +02:00
|
|
|
<script src="/js/angular.min.js"></script>
|
2017-08-22 06:54:54 +02:00
|
|
|
<script src="/js/ngsanitize.min.js"></script>
|
2017-08-22 03:31:39 +02:00
|
|
|
<script src="/js/ngroute.min.js"></script>
|
2017-08-22 06:54:54 +02:00
|
|
|
<script src="/js/ngmarkdown.js"></script>
|
2017-09-04 00:01:10 +02:00
|
|
|
<script src="/js/app.js?v7"></script>
|
2017-08-22 03:41:53 +02:00
|
|
|
|
|
|
|
<meta property="og:title" content="TL-Schema Explorer">
|
2017-08-22 03:42:40 +02:00
|
|
|
<meta property="og:site_name" content="TL-Schema Explorer">
|
2017-08-22 03:41:53 +02:00
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:description" content="Search the Telegram API schema in a beautiful way.">
|
2017-08-22 03:31:39 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<div class="header-inner">
|
|
|
|
<a href="#!/" class="home">TL-Schema Explorer (Layer 71)</a>
|
|
|
|
|
|
|
|
<div class="header-right">
|
2017-08-22 05:14:56 +02:00
|
|
|
<a href="/resources/schema.json" class="ic-download">schema.json</a>
|
|
|
|
<a href="/resources/schema.tl" class="ic-download">schema.tl</a>
|
2017-08-22 03:31:39 +02:00
|
|
|
<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>
|
2017-08-22 05:41:26 +02:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div class="footer-inner">
|
|
|
|
© <a href="https://tjhorner.com">TJ Horner</a> 2017 — <a href="https://github.com/tjhorner/schema.tl">GitHub</a> — This is a fan site that is not affiliated with Telegram in any way.
|
|
|
|
</div>
|
|
|
|
</footer>
|
2017-08-22 03:31:39 +02:00
|
|
|
</body>
|
|
|
|
</html>
|