Skip to content

Commit 2020e87

Browse files
committed
Agregado capitulo 1
0 parents  commit 2020e87

File tree

6 files changed

+287
-0
lines changed

6 files changed

+287
-0
lines changed

.gitignore

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
4+
5+
*.iml
6+
7+
## Directory-based project format:
8+
.idea/
9+
# if you remove the above rule, at least ignore the following:
10+
11+
# User-specific stuff:
12+
# .idea/workspace.xml
13+
# .idea/tasks.xml
14+
# .idea/dictionaries
15+
16+
# Sensitive or high-churn files:
17+
# .idea/dataSources.ids
18+
# .idea/dataSources.xml
19+
# .idea/sqlDataSources.xml
20+
# .idea/dynamic.xml
21+
# .idea/uiDesigner.xml
22+
23+
# Gradle:
24+
# .idea/gradle.xml
25+
# .idea/libraries
26+
27+
# Mongo Explorer plugin:
28+
# .idea/mongoSettings.xml
29+
30+
## File-based project format:
31+
*.ipr
32+
*.iws
33+
34+
## Plugin-specific files:
35+
36+
# IntelliJ
37+
/out/
38+
39+
# mpeltonen/sbt-idea plugin
40+
.idea_modules/
41+
42+
# JIRA plugin
43+
atlassian-ide-plugin.xml
44+
45+
# Crashlytics plugin (for Android Studio and IntelliJ)
46+
com_crashlytics_export_strings.xml
47+
crashlytics.properties
48+
crashlytics-build.properties
49+
50+

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Learning Web Development with Bootstrap and AngularJS
2+
========================
3+
4+
Bootstrap v3.3.5
5+
AngularJS v1.2.0

chapter1/css/bootstrap.min.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chapter1/index.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en" ng-app ng-controller="AppCtrl">
3+
<head>
4+
<meta charset="utf-8">
5+
<link rel="stylesheet" href="css/bootstrap.min.css">
6+
<title></title>
7+
<script type="text/javascript" src="js/angular.min.js"></script>
8+
<script type="text/javascript" src="js/controller.js"></script>
9+
</head>
10+
<body>
11+
<div class="container">
12+
<div class="page-header">
13+
<h2>Chapter 1 <small>Hello, World</small></h2>
14+
</div>
15+
16+
<div class="jumbotron">
17+
<h1>Hello, {{name || 'World'}}</h1>
18+
19+
<label for="name">Enter Your Name</label>
20+
<input type="text" ng-model="name" class="form-control input-lg" id="name">
21+
</div>
22+
</div>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)