mirror of
https://github.com/danog/schema.tl.git
synced 2024-11-26 20:14:52 +01:00
42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
<html ng-app="tlDocsApp">
|
|
<head>
|
|
<title>{{ title ? title + " // " : "" }}TL-Schema Explorer</title>
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono" rel="stylesheet">
|
|
<link rel="stylesheet" href="/css/styles.css?v9">
|
|
<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/angular.min.js"></script>
|
|
<script src="/js/ngroute.min.js"></script>
|
|
<script src="/js/app.js?v5"></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.">
|
|
</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> |