1
Fork 0
This commit is contained in:
Jake Howard 2015-12-28 18:17:49 +00:00
parent d8dac260d0
commit af32e95576
3 changed files with 3 additions and 2 deletions

View file

@ -33,6 +33,7 @@ class AboutIndexView(CustomTemplate):
template_name = 'about/index.html' template_name = 'about/index.html'
html_title = "About" html_title = "About"
class AboutMeView(CustomTemplate): class AboutMeView(CustomTemplate):
template_name = 'about/me.html' template_name = 'about/me.html'
html_title = "About Me" html_title = "About Me"

View file

@ -1,6 +1,6 @@
/* global $ */ /* global $ */
require('./utils.js'); require('./events.js');
var React = require('react'); var React = require('react');
var ProjectImagesTypes = require('./components/index/project-images-types'); var ProjectImagesTypes = require('./components/index/project-images-types');

View file

@ -18,5 +18,5 @@ $(function() { // https://css-tricks.com/snippets/jquery/smooth-scrolling/
$('a[href="soon"]').click(function (e) { $('a[href="soon"]').click(function (e) {
e.preventDefault(); e.preventDefault();
alert("Content coming soon, stand by!"); alert('Content coming soon, stand by!');
}); });