mirror of
https://github.com/danog/schema.tl.git
synced 2024-11-26 20:14:52 +01:00
46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<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?v13">
|
|
<link rel="stylesheet" href="/css/fonts.css">
|
|
<link rel="stylesheet" href="/css/rgs.css">
|
|
<link rel="shortcut icon" href="/img/telegram-circle.png">
|
|
|
|
<script src="/js/schema.js"></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/app.js?v8"></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 71)</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 — <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>
|
|
</body>
|
|
</html> |