1
0
mirror of https://github.com/danog/schema.tl.git synced 2025-01-22 22:02:34 +01:00
schema.tl/index.html

32 lines
1.2 KiB
HTML
Raw Normal View History

2017-08-21 18:31:39 -07:00
<html ng-app="tlDocsApp">
<head>
<title>TL-Schema Explorer</title>
2017-08-21 19:51:48 -07:00
<link rel="stylesheet" href="/css/styles.css?v4">
2017-08-21 18:39:13 -07:00
<link rel="stylesheet" href="/css/fonts.css">
2017-08-21 18:31:39 -07:00
<link rel="stylesheet" href="/css/rgs.css">
<script src="/js/schema.js"></script>
<script src="/js/angular.min.js"></script>
<script src="/js/ngroute.min.js"></script>
2017-08-21 19:48:22 -07:00
<script src="/js/app.js?v4"></script>
2017-08-21 18:41:53 -07:00
<meta property="og:title" content="TL-Schema Explorer">
2017-08-21 18:42:40 -07:00
<meta property="og:site_name" content="TL-Schema Explorer">
2017-08-21 18:41:53 -07:00
<meta property="og:type" content="website">
<meta property="og:description" content="Search the Telegram API schema in a beautiful way.">
2017-08-21 18:31:39 -07:00
</head>
<body>
<header>
<div class="header-inner">
<a href="#!/" class="home">TL-Schema Explorer (Layer 71)</a>
<a href="/resources/schema.json">Download schema.json</a>
<a href="/resources/schema.tl">Download schema.tl</a>
<div class="header-right">
<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>