2014-01-05 16:07:11 +00:00
<!doctype html>
2014-07-04 11:21:21 +00:00
< html lang = "en" ng-app = "myApp" manifest = "webogram.appcache" ng-csp = "" >
2014-01-05 16:07:11 +00:00
< head >
< meta charset = "utf-8" >
2014-07-25 14:54:23 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" >
2014-01-05 16:07:11 +00:00
< title > Webogram< / title >
2014-03-09 21:12:41 +00:00
<!-- build:css css/app.css -->
2014-01-05 16:07:11 +00:00
< link rel = "stylesheet" href = "vendor/angular/angular-csp.css" / >
2014-03-09 21:12:41 +00:00
< link rel = "stylesheet" href = "vendor/bootstrap/css/bootstrap.css" / >
2014-01-05 16:07:11 +00:00
< link rel = "stylesheet" href = "vendor/jquery.nanoscroller/nanoscroller.css" / >
2014-03-09 21:12:41 +00:00
< link rel = "stylesheet" href = "css/app.css" / >
2014-06-17 18:02:35 +00:00
< link rel = "stylesheet" href = "css/app_mobile.css" / >
2014-03-09 21:12:41 +00:00
<!-- endbuild -->
2014-01-30 18:14:31 +00:00
< link rel = "icon" href = "favicon.ico" type = "image/x-icon" / >
2014-01-23 13:49:24 +00:00
2014-07-25 14:54:23 +00: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 08:49:00 +00:00
2014-07-25 14:54:23 +00:00
< meta name = "apple-mobile-web-app-title" content = "Telegram Web" >
2014-06-25 08:49:00 +00: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 14:54:23 +00:00
2014-01-23 13:49:24 +00:00
< meta property = "og:title" content = "Webogram" >
2014-01-23 15:19:55 +00:00
< meta property = "og:url" content = "http://zhukov.github.io/webogram/" >
2014-01-23 15:30:03 +00:00
< meta property = "og:image" content = "http://zhukov.github.io/webogram/img/logo_share.png" >
2014-01-23 13:49:24 +00: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 16:07:11 +00:00
< / head >
< body >
2014-06-17 18:02:35 +00:00
< div class = "page_wrap" ng-view > < / div >
2014-01-05 16:07:11 +00:00
2014-03-09 21:12:41 +00:00
<!-- build:js js/app.js -->
< script type = "text/javascript" src = "vendor/console-polyfill/console-polyfill.js" > < / script >
2014-01-05 16:07:11 +00:00
< script type = "text/javascript" src = "vendor/jquery/jquery.min.js" > < / script >
2014-06-09 16:43:20 +00:00
< script type = "text/javascript" src = "js/lib/config.js" > < / script >
< script type = "text/javascript" src = "js/init.js" > < / script >
2014-01-05 16:07:11 +00:00
< script type = "text/javascript" src = "vendor/jquery.nanoscroller/nanoscroller.js" > < / script >
2014-03-09 21:12:41 +00:00
< script type = "text/javascript" src = "vendor/jquery.emojiarea/jquery.emojiarea.js" > < / script >
2014-01-05 16:07:11 +00:00
2014-03-09 21:12:41 +00: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 18:46:16 +00:00
< script type = "text/javascript" src = "vendor/angular/angular-touch.js" > < / script >
2014-03-09 21:12:41 +00:00
< script type = "text/javascript" src = "vendor/ui-bootstrap/ui-bootstrap-custom-tpls-0.10.0.js" > < / script >
2014-01-05 16:07:11 +00:00
< script type = "text/javascript" src = "vendor/jsbn/jsbn_combined.js" > < / script >
2014-03-09 21:12:41 +00:00
< script type = "text/javascript" src = "vendor/cryptoJS/crypto.js" > < / script >
2014-01-05 16:07:11 +00:00
< script type = "text/javascript" src = "vendor/zlib/gunzip.min.js" > < / script >
2014-03-30 09:01:17 +00:00
< script type = "text/javascript" src = "vendor/closure/long.js" > < / script >
2014-01-05 16:07:11 +00:00
2014-06-20 15:34:14 +00: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 21:12:41 +00:00
< script type = "text/javascript" src = "js/lib/mtproto.js" > < / script >
2014-06-20 15:34:14 +00:00
< script type = "text/javascript" src = "js/lib/mtproto_wrapper.js" > < / script >
2014-03-12 21:55:12 +00:00
2014-03-09 21:12:41 +00: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 21:55:12 +00:00
<!-- PRODUCTION_ONLY_BEGIN
< script type = "text/javascript" src = "js/templates.js" > < / script >
PRODUCTION_ONLY_END-->
2014-03-09 21:12:41 +00:00
< script type = "text/javascript" src = "js/directives.js" > < / script >
<!-- endbuild -->
2014-01-05 16:07:11 +00:00
< / body >
2014-03-17 22:43:13 +00:00
< / html >