-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ORIGIN INVESTMENTS
authored and
ORIGIN INVESTMENTS
committed
Mar 31, 2024
1 parent
0d57ae5
commit c1b285e
Showing
37 changed files
with
840 additions
and
148 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 |
---|---|---|
|
@@ -6,25 +6,34 @@ | |
<title>{{ title }}</title> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap" rel="stylesheet"> | ||
<script src="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/js/splide.min.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/splide.min.css"> | ||
<link rel="stylesheet" href="{{ '/css/style.css' | url }}" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container-fluid"> | ||
<div class="site-title"><a href="{{ '/' | url }}"><img src="{{ '/img/pose-logo.svg' | url }}"/></a></div> | ||
<div class="site-title"><a href="{{ '/' | url }}"><img src="{{ '/img/logo.png' | url }}"/></a></div> | ||
<button class="menu-toggle"> | ||
<div class="bar"></div> | ||
<div class="bar"></div> | ||
<div class="bar"></div> | ||
</button> | ||
<nav> | ||
<li><a href="#news">News</a></li> | ||
<li><a href="#home">Home</a></li> | ||
<li><a href="#team">Team</a></li> | ||
<li><a href="#events">Events</a></li> | ||
<li><a href="#people">Poeple</a></li> | ||
<li><a href="#training-material">Training Material</a></li> | ||
<li><a href="#success-stories">Success Stories</a></li> | ||
</nav> | ||
</div> | ||
</header> | ||
<main> | ||
{{ content | safe }} | ||
</main> | ||
<footer> | ||
<div class="container text-center">© <span class="current-year"></span> Pose Phase II</div> | ||
<script src="{{ '/js/index.js' | url }}"></script> | ||
</body> | ||
</html> |
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,33 @@ | ||
<div class="card event-card"> | ||
|
||
<div class="event-time">{{event.data.time}}</div> | ||
|
||
<div class="event-info"> | ||
<div> | ||
|
||
<div class="location-address"> | ||
<img class="icon" src="{{'/img/icon-location.svg' | url}}" width="16" height="16"/> | ||
<div> | ||
<div class="location">{{event.data.location}}</div> | ||
{% if event.data.address %} | ||
<a class="address" href="{{event.data.locationLink | url}}">{{ event.data.address }}</a> | ||
{% endif %} | ||
</div> | ||
</div> | ||
|
||
<div class="event-details">{{event.data.details}}</div> | ||
|
||
{% if event.data.link %} | ||
<div class="event-link"> | ||
<a href="{{event.data.link | url}}" target="_blank"> | ||
<img src="{{'/img/icon-external-link.svg' | url}}" width="16"/> | ||
<span>Event Details</span> | ||
</a> | ||
</div> | ||
{% else %} | ||
<div class="event-no-link">Details Coming Soon</div> | ||
{% endif %} | ||
</div> | ||
</div> | ||
|
||
</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
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
Oops, something went wrong.