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="row"> | |
<dl class="dl-horizontal"> | |
<dt>Primary :</dt> | |
<dd> | |
<%= fixDiscipline(data.Application.Disciplines[0].Title, data.Application.Disciplines[0].SkillLevel) %> | |
</dd> | |
<dt>Secondary :</dt> | |
<dd><%= fixDiscipline(data.Application.Disciplines[1].Title, data.Application.Disciplines[1].SkillLevel) %></dd> | |
<dt>Additional :</dt> | |
<dd><% _.each(data.Application.Disciplines, function (Discipline, index) { %> |
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
Homebrew build logs for homebrew/apache/httpd22 on Mac OS X 10.11.4 | |
Build date: 2016-05-01 14:29:50 |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<script src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5" | |
async></script> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<!--1. Hit this url to get all the graph edges - https://www.instagram.com/jervoisakl/?__a=1 using the insta username--> |
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> | |
<!-- | |
NOTES: | |
1. All tokens are represented by '$' sign in the template. | |
2. You can write your code only wherever mentioned. | |
3. All occurrences of existing tokens will be replaced by their appropriate values. | |
4. Blank lines will be removed automatically. | |
5. Remove unnecessary comments before creating your template. | |
--> | |
<html> |
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
### SILVERSTRIPE START ### | |
# Deny access to templates (but allow from localhost) | |
<Files *.ss> | |
Order deny,allow | |
Deny from all | |
Allow from 127.0.0.1 | |
</Files> | |
# Deny access to IIS configuration |
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
{ | |
"id": "a68e40fb-e3d8-5c17-955a-dd23f53ecdaf", | |
"title": "Whitewater", | |
"image": "https://images.firsttable.co.nz/public/restaurant/2707/b2d7f4dd9d/buffet-315691-1280.jpg", | |
"isNew": true, | |
"slug": "/sample/slug/", | |
"openHours": "Everyday 11am - 10pm", | |
"city": "Darling Harbour", | |
"mainsPriceRange": "$15 - $25", | |
"rating": 3.0, |
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
import React from 'react'; | |
import { withFormik } from 'formik'; | |
import * as Yup from 'yup'; | |
const MyForm = (props) => { | |
const { | |
values, | |
touched, | |
errors, | |
handleChange, |