This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>The Big Lebowski</title> | |
<link rel="stylesheet" href="css/bootstrap.min.css"> | |
<link rel="stylesheet" href="css/amelia-bootstrap.min.css"> | |
<link href="css/site.css" rel="stylesheet" /> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]--> | |
<!--[if !IE]><!--> <html lang="ru"> <!--<![endif]--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if IE 7]> <html lang="en" class="ie7"> <![endif]--> | |
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]--> | |
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]--> | |
<!--[if !IE]><!--> | |
<html lang="en"> | |
<!--<![endif]--> | |
<head> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]--> | |
<!--[if !IE]><!--> <html lang="ru"> <!--<![endif]--> | |
<head> | |
<script type="text/javascript"> | |
WebFontConfig = { | |
google: { families: [ 'Cabin:400,600,700,400italic,600italic,700italic:latin', 'Gentium+Basic:400,400italic:latin', 'Roboto+Slab:400,700:latin,cyrillic', 'Roboto+Condensed:400,700,700italic,400italic:cyrillic-ext,latin,cyrillic' ] } | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta content=".NET, C#, Wildermuth, Shawn, Weblog" name="KEYWORDS" /> | |
<meta runat="server" id="DescriptionMetaTag" content="Shawn Wildermuth's Rants Development" name="DESCRIPTION" /> | |
<meta name="description" content="Простой пример одностраничника"> | |
<meta name="author" content="Zer0"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- CDN Google Hosted Libraries --> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$scope.message = "Hello World"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{message}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 ng-controller="HelloController">{{message}}</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function HelloController ($scope) {} |
OlderNewer