-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from ZabGo/upgrade-to-phoenix-1.7
Resources page and link to rules of Cornucopia game
- Loading branch information
Showing
7 changed files
with
43 additions
and
6 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
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
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,15 @@ | ||
defmodule CopiWeb.ResourcesLive.Index do | ||
use CopiWeb, :live_view | ||
|
||
use Phoenix.Component | ||
|
||
import CopiWeb.LiveHelpers | ||
|
||
alias Copi.Cornucopia | ||
alias Copi.Cornucopia.Game | ||
|
||
@impl true | ||
def mount(_params, _session, socket) do | ||
{:ok, socket} | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<.header1>Resources</.header1> | ||
|
||
<.header2 class="my-8">Articles, blogs, books</.header2> | ||
|
||
<div> | ||
<p class="mb-4 text-[#F7813E]"><a href="https://martinfowler.com/articles/agile-threat-modelling.html" target="_blank" rel="noreferrer noopener" >A Guide to Threat Modelling for Developers by Jim Gumbley</a></p> | ||
|
||
<p class="mb-4 text-[#F7813E]"> <a href="https://cheatsheetseries.owasp.org/cheatsheets/Threat_Modeling_Cheat_Sheet.html" target="_blank" rel="noreferrer noopener" >OWASP Threat Modeling Cheat Sheet</a></p> | ||
</div> | ||
|
||
<.header2 class="my-8">Videos</.header2> | ||
|
||
<div> | ||
<p class="mb-4 text-[#F7813E]"><a href="https://www.youtube.com/watch?v=BZVoQurTEMc" target="_blank" rel="noreferrer noopener" >Cornucopia game explained</a></p> | ||
|
||
<p class="mb-4 text-[#F7813E]"> <a href="https://www.youtube.com/watch?v=mL5G8HeI8zI" target="_blank" rel="noreferrer noopener" >Threat modelling with OWASP Threat Dragon</a></p> | ||
</div> | ||
|
||
|
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