2017-08-22 03:31:39 +02:00
|
|
|
<html ng-app="tlDocsApp">
|
|
|
|
<head>
|
2017-08-22 05:33:47 +02:00
|
|
|
<title>{{ title ? title + " // " : "" }}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 05:26:42 +02:00
|
|
|
<link rel="stylesheet" href="/css/styles.css?v7">
|
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>
|
|
|
|
<script src="/js/angular.min.js"></script>
|
|
|
|
<script src="/js/ngroute.min.js"></script>
|
2017-08-22 05:33:47 +02:00
|
|
|
<script src="/js/app.js?v5"></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>
|
|
|
|
</body>
|
|
|
|
</html>
|