forked from OpenSecuritySummit/oss2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made participants images to show in colour refactored participant's sessions mappings
- Loading branch information
Showing
10 changed files
with
59 additions
and
38 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ public | |
node_modules | ||
*~ | ||
.DS_Store | ||
.idea |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title : User Sessions | ||
type : user-session | ||
hide : true | ||
layout : index | ||
--- | ||
|
||
In addition to [Working Sessions](/working-sessions) this year we are also introducing the concept of User Sessions |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{- range .this.Site.Pages}} | ||
|
||
{{if in (index .Params $.field) $.name}} | ||
<tr> | ||
<th><a href="{{.Permalink}}">{{.Params.title}}</a></th> | ||
<td>{{ .Params.type }}</td> | ||
{{ with (eq $.field "organizers") }}<td> <span class="label label-primary">organiser</span> </td> {{ end }} | ||
{{ with (eq $.field "participants") }}<td> <span class="label label-success">participant</span> </td> {{ end }} | ||
</tr> | ||
{{end }} | ||
{{ end }} | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{ define "content" }} | ||
{{ .Content }} | ||
|
||
<h2>Current User Sessions</h2> | ||
|
||
|
||
{{ $sessions := where .Site.Pages ".Params.type" "user-session"}} | ||
{{ partial "sessions/simple-table.html" $sessions }} | ||
|
||
{{ end }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{{ define "content" }} | ||
|
||
{{ .Content }} | ||
|
||
<hr/> | ||
|
||
<a href="/user-sessions"> Back to list of all User Sessions</a> | ||
<hr> | ||
{{ end }} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,7 @@ | |
|
||
{{ .Content }} | ||
|
||
<hr/> | ||
<a href="/working-sessions"> Back to list of all Working Sessions</a> | ||
<hr/> | ||
{{ end }} |