2014-01-05 20:07:11 +04:00
<!doctype html>
2014-07-04 15:21:21 +04:00
< html lang = "en" ng-app = "myApp" manifest = "webogram.appcache" ng-csp = "" >
2014-01-05 20:07:11 +04:00
< head >
< meta charset = "utf-8" >
2014-07-25 18:54:23 +04:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" >
2014-01-05 20:07:11 +04:00
< title > Webogram< / title >
2014-03-09 18:12:41 -03:00
<!-- build:css css/app.css -->
2014-01-05 20:07:11 +04:00
< link rel = "stylesheet" href = "vendor/angular/angular-csp.css" / >
2014-03-09 18:12:41 -03:00
< link rel = "stylesheet" href = "vendor/bootstrap/css/bootstrap.css" / >
2014-01-05 20:07:11 +04:00
< link rel = "stylesheet" href = "vendor/jquery.nanoscroller/nanoscroller.css" / >
2014-03-09 18:12:41 -03:00
< link rel = "stylesheet" href = "css/app.css" / >
2014-06-17 22:02:35 +04:00
< link rel = "stylesheet" href = "css/app_mobile.css" / >
2014-03-09 18:12:41 -03:00
<!-- endbuild -->
2014-01-30 22:14:31 +04:00
< link rel = "icon" href = "favicon.ico" type = "image/x-icon" / >
2014-01-23 17:49:24 +04:00
2014-07-25 18:54:23 +04:00
< link rel = "apple-touch-icon" href = "img/iphone_home120.png" >
< link rel = "apple-touch-icon" sizes = "120x120" href = "img/iphone_home120.png" >
< link rel = "apple-touch-startup-image" media = "(device-width: 320px)" href = "img/iphone_startup.png" >
2014-06-25 12:49:00 +04:00
2014-07-25 18:54:23 +04:00
< meta name = "apple-mobile-web-app-title" content = "Telegram Web" >
2014-06-25 12:49:00 +04:00
< meta name = "mobile-web-app-capable" content = "yes" >
< meta name = "apple-mobile-web-app-capable" content = "yes" >
< meta name = "apple-mobile-web-app-status-bar-style" content = "black-translucent" >
2014-07-25 18:54:23 +04:00
2014-01-23 17:49:24 +04:00
< meta property = "og:title" content = "Webogram" >
2014-01-23 19:19:55 +04:00
< meta property = "og:url" content = "http://zhukov.github.io/webogram/" >
2014-01-23 19:30:03 +04:00
< meta property = "og:image" content = "http://zhukov.github.io/webogram/img/logo_share.png" >
2014-01-23 17:49:24 +04:00
< meta property = "og:site_name" content = "Webogram" >
< meta property = "og:description" content = "Welcome to an experimental web-client of Telegram messenger. See https://github.com/zhukov/webogram for more info." >
2014-01-05 20:07:11 +04:00
< / head >
< body >
2014-06-17 22:02:35 +04:00
< div class = "page_wrap" ng-view > < / div >
2014-01-05 20:07:11 +04:00
2014-03-09 18:12:41 -03:00
<!-- build:js js/app.js -->
< script type = "text/javascript" src = "vendor/console-polyfill/console-polyfill.js" > < / script >
2014-01-05 20:07:11 +04:00
< script type = "text/javascript" src = "vendor/jquery/jquery.min.js" > < / script >
2014-06-09 20:43:20 +04:00
< script type = "text/javascript" src = "js/lib/config.js" > < / script >
< script type = "text/javascript" src = "js/init.js" > < / script >
2014-01-05 20:07:11 +04:00
< script type = "text/javascript" src = "vendor/jquery.nanoscroller/nanoscroller.js" > < / script >
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "vendor/jquery.emojiarea/jquery.emojiarea.js" > < / script >
2014-01-05 20:07:11 +04:00
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "vendor/angular/angular.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-route.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-animate.js" > < / script >
< script type = "text/javascript" src = "vendor/angular/angular-sanitize.js" > < / script >
2014-07-01 22:46:16 +04:00
< script type = "text/javascript" src = "vendor/angular/angular-touch.js" > < / script >
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "vendor/ui-bootstrap/ui-bootstrap-custom-tpls-0.10.0.js" > < / script >
2014-01-05 20:07:11 +04:00
< script type = "text/javascript" src = "vendor/jsbn/jsbn_combined.js" > < / script >
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "vendor/cryptoJS/crypto.js" > < / script >
2014-01-05 20:07:11 +04:00
< script type = "text/javascript" src = "vendor/zlib/gunzip.min.js" > < / script >
2014-03-30 13:01:17 +04:00
< script type = "text/javascript" src = "vendor/closure/long.js" > < / script >
2014-01-05 20:07:11 +04:00
2014-06-20 19:34:14 +04:00
< script type = "text/javascript" src = "js/lib/utils.js" > < / script >
< script type = "text/javascript" src = "js/lib/bin_utils.js" > < / script >
< script type = "text/javascript" src = "js/lib/tl_utils.js" > < / script >
< script type = "text/javascript" src = "js/lib/ng_utils.js" > < / script >
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "js/lib/mtproto.js" > < / script >
2014-06-20 19:34:14 +04:00
< script type = "text/javascript" src = "js/lib/mtproto_wrapper.js" > < / script >
2014-03-12 22:55:12 +01:00
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "js/app.js" > < / script >
< script type = "text/javascript" src = "js/services.js" > < / script >
< script type = "text/javascript" src = "js/controllers.js" > < / script >
< script type = "text/javascript" src = "js/filters.js" > < / script >
2014-03-12 22:55:12 +01:00
<!-- PRODUCTION_ONLY_BEGIN
< script type = "text/javascript" src = "js/templates.js" > < / script >
PRODUCTION_ONLY_END-->
2014-03-09 18:12:41 -03:00
< script type = "text/javascript" src = "js/directives.js" > < / script >
<!-- endbuild -->
2014-01-05 20:07:11 +04:00
< / body >
2014-03-17 19:43:13 -03:00
< / html >