- User Stories
- Interface Mockups
- Schema Design
- Migrations
- Seeders
- Models
- Model Relationships
- Model Validation Rules
- Master Template
- Login Views, Routes, Actions, & Hashing
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
function get_testimonies($count = 4) { | |
$args = array( | |
'post_type' => 'codeup-testimonies', | |
'post_status' => 'publish', | |
'posts_per_page' => $count, | |
'orderby' => 'rand' | |
); | |
$loop = new WP_Query( $args ); |
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
<select id="group-categories" name="group-categories" multiple class="form-control"> | |
@foreach($categories as $id => $category) | |
@if($category == $group->category) | |
<option value="{{ $id }}" selected>{{ $category }}</option> | |
@else | |
<option value="{{ $id }}">{{ $category }}</option> | |
@endif | |
@endforeach | |
</select> |
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> | |
<title>Template</title> | |
<link rel="stylesheet" href="/assets/css/normalize.css"> | |
<link rel="stylesheet" href="/assets/css/style.css"> | |
</head> | |
<body> | |
<div class="container"> |
This is bold
Italics
$ npm install -g bower
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
Final project (choose your own adventure) | |
Everyone must have personal portfolio/resume | |
and any of the following… | |
re-design | |
game | |
choice | |
Submit 2-3 ideas you may have via email [email protected] |
Sass is a way to extend the functionality of css by adding the ability to use variables, nested rules, mixins and inline imports. You can also organize your style sheets in a better way and manage them easier.
With Sass you have a simple command you run that will view the contents of a css file (with scss extension example.scss). It will then do the necessary changes according to variables and mixins that you have and then you get a final css output of that file. So Sass compiles all the scss content and gets you a final css file that your website will be linked to.