Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.

Commit 8ef1850

Browse files
committed
Add LexisNexis page
1 parent 209820b commit 8ef1850

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

app/Http/Controllers/StaticController.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public function getGroups()
5959
return \View::make('groups');
6060
}
6161

62+
public function getSummer()
63+
{
64+
\View::share('loaded_batch', Models\Batch::current());
65+
66+
return \View::make('summer');
67+
}
68+
6269
public function getHackclub()
6370
{
6471
\View::share('loaded_batch', Models\Batch::current());

app/Http/routes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
\Route::get('/index.json', '\CodeDay\Http\Controllers\StaticController@getGlobalJson');
4444
\Route::get('/video', '\CodeDay\Http\Controllers\StaticController@getVideo');
4545
\Route::post('/swag', '\CodeDay\Http\Controllers\StaticController@postSwag');
46+
\Route::get('/summer', '\CodeDay\Http\Controllers\StaticController@getSummer');
4647

4748
\Route::get('/promo', '\CodeDay\Http\Controllers\StaticController@getPromo');
4849
\Route::get('/press', '\CodeDay\Http\Controllers\StaticController@getPress');

resources/views/summer.twig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{% extends "template.twig" %}
2+
{% block section %}sponsor{% endblock %}
3+
{% block page %}index{% endblock %}
4+
{% block title %}LexisNexis Internships{% endblock %}
5+
{% block content %}
6+
<p><strong>From our sponsor LexisNexis Risk Solutions:</strong></p>
7+
<p><a href="https://srnd-cdn.net/codeday/lnr-internships.pdf">LexisNexis Risk Solutions is hiring summer interns,
8+
and CodeDay attendees are invited to apply. Click here for more information.</a></p>
9+
<p>In addition to the internship program, people have the opportunity to contribute to the open-source platform
10+
alongside LexisNexis Risk Solutions engineers by submitting a fix for an issues assigned to Available for Anyone
11+
in our JIRA issue tracker: https://track.hpccsystems.com/. (You don’t have to have a login to see issues, but we
12+
do encourage potential contributors to sign up so they can have issues assigned to them etc.)</p>
13+
{% endblock %}

0 commit comments

Comments
 (0)