This file contains hidden or 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
| class PostsController < ApplicationController | |
| def index | |
| @new_post = Post.new | |
| @all_posts = Post.order(created_at: :desc).all | |
| end | |
| def new | |
| @new_post = Post.new | |
| end | |
| end |
This file contains hidden or 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
| rails new MessengerApp | |
| cd MessengerApp | |
| ls |
This file contains hidden or 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> | |
| <head> | |
| <link href='https://fonts.googleapis.com/css?family=Roboto:400,300,700' rel='stylesheet' type='text/css'> | |
| <link href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css" rel="stylesheet" /> | |
| <link href="css/main.css" rel="stylesheet" /> | |
| <script src="js/vendor/angular.min.js"></script> | |
| </head> | |
| <body ng-app="OutboxApp"> | |
| <div class="header"> |
This file contains hidden or 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
| app.factory('email', ['$http', function($http) { | |
| return $http.get('https://s3.amazonaws.com/codecademy-content/courses/ltp4/emails-api/emails.json') | |
| .success(function(data) { | |
| return data; | |
| }) | |
| .error(function(err) { | |
| return err; | |
| }); | |
| }]); |
This file contains hidden or 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
| app.controller('HomeController', ['$scope', 'emails', function($scope, emails) { | |
| emails.success(function(data) { | |
| $scope.email = data; | |
| }); | |
| }]); |
This file contains hidden or 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> | |
| <head> | |
| <link href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet" type="text/css"> | |
| <link href="css/main.css" rel="stylesheet"> | |
| <script src="js/vendor/angular.min.js"></script> | |
| </head> | |
| <body ng-app="FeedsterApp"> |
This file contains hidden or 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
| <button ng-click="like()" class="btn">+1</button> |
This file contains hidden or 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
| app.directive('plusOne', function() { | |
| return { | |
| restrict: 'E', | |
| scope: { | |
| }, | |
| templateUrl: 'js/directives/plusOne.html', | |
| link: function(like() { | |
| function(scope, element, attrs) { | |
| scope.like = function() { | |
| element.toggleClass('btn-like'); |
This file contains hidden or 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
| <div class="col-sm-4"> | |
| <div class="row scorecard"> | |
| <p class="period"> {{ info.period }} </p> | |
| <div class="visitor col-xs-4"> | |
| <h2 class="visitor-score"> {{ info.visitor_score }} </h2> | |
| <h3> | |
| <span class="visitor-city"> {{ info.visitor_team.city }} </span><br/> | |
| <span class="visitor-name"> {{ info.visitor_team.name }} </span> | |
| </h3> | |
| </div> |
This file contains hidden or 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> | |
| <head> | |
| <link href='https://fonts.googleapis.com/css?family=Roboto:400,100,300' rel='stylesheet' type='text/css'> | |
| <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'> | |
| <link href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css" rel="stylesheet"> | |
| <link href="css/main.css" rel="stylesheet"> | |
| <script src="js/vendor/angular.min.js"></script> | |
| </head> |