-
Notifications
You must be signed in to change notification settings - Fork 31
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 #273 from stride3d/master
Initiating deployment of latest website updates to production
- Loading branch information
Showing
35 changed files
with
472 additions
and
215 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# More GitHub Actions for Azure: https://github.com/Azure/actions | ||
|
||
name: Build Stride Web for GitHub Staging | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies & build | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Deploy | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./_site | ||
publish_branch: gh-pages |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<div class="alert-banner text-center text-bg-dark py-4 px-3"> | ||
<p class="text-light h2 mb-3">Stride Developers - Stride Day 2023</p> | ||
<p class="lead">Tune into the live event on Wednesday, September 5th, 2023 to hear the latest in Stride Game Engine development for .NET developers.</p> | ||
<p class="text-light h2 mb-3">Announcing Stride 4.2</p> | ||
<p class="lead">The Stride contributors are thrilled to announce the release of Stride 4.2, now fully compatible with .NET 8 and leveraging the latest enhancements in C# 12. Read more about it <a href="/blog/announcing-stride-4-2-in-dotnet-8/">here</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
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 |
---|---|---|
@@ -1,20 +1,32 @@ | ||
<div class="row gy-5 gx-sm-5 mb-5"> | ||
{% assign latestPosts = collections.blog | reverse %} | ||
{% for post in latestPosts limit:3 %} | ||
<div class="col-md-4"> | ||
<div class="card mb-4 h-100"> | ||
<div class="card-body px-4 pt-4"> | ||
<h5 class="card-title">{{ post.data.title }}</h5> | ||
<div class="my-2 small text-secondary"> | ||
<i class="fa-solid fa-calendar-days me-1"></i> {%- include post/day.html date:post.date -%} | ||
|
||
<div class="container-xl"> | ||
<div class="row gy-4 gx-sm-4 justify-content-center mb-4"> | ||
<div class="col-12"> | ||
<div class="card h-100"> | ||
<div class="p-5 pull-left"> | ||
<div class="row"> | ||
<h2 class="mb-3 fw-bold">Recent blog posts</h2> | ||
{% assign latestPosts = collections.blog | reverse %} | ||
{% for post in latestPosts limit:3 %} | ||
<div class="col-md-4 g-3"> | ||
<div class="card mb-4 h-100"> | ||
<div class="card-body px-4 pt-4"> | ||
<h3 class="h5 card-title fw-bold">{{ post.data.title }}</h3> | ||
<div class="mt-2 mb-3 small text-secondary"> | ||
<i class="fa-solid fa-calendar-days me-1"></i> {%- include post/day.html date:post.date -%} | ||
</div> | ||
{%- if post.data.excerpt -%}{{ post.data.excerpt | md }}{%- else -%} | ||
{{ post.data.page.excerpt | md }}{%- endif -%} | ||
</div> | ||
<div class="px-4 mb-4"> | ||
<a href="{{ post.url }}" class="btn btn-lg btn-outline-stride me-md-2">Read more</a> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{%- if post.data.excerpt -%}{{ post.data.excerpt | md }}{%- else -%} | ||
{{ post.data.page.excerpt | md }}{%- endif -%} | ||
</div> | ||
<div class="px-4 mb-4"> | ||
<a href="{{ post.url }}" class="stretched-link btn btn-lg btn-outline-stride me-md-2">Read more</a> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,25 @@ | ||
{% comment %} Create cards manually, or move them to json {% endcomment %} | ||
<div class="col-sm-6 col-xxl-4"> | ||
<div class="col-sm-6 col-xxl-4 mb-2"> | ||
<div class="card text-center h-100"> | ||
<div class="bg-white d-flex" style="min-height: 200px"> | ||
<img class="card-img-top p-4" alt="logo" src="/images/sponsors/vvvv-logo.svg"> | ||
<div class="bg-white d-flex justify-content-center align-middle" style="min-height: 200px"> | ||
<a target="_blank" rel="noopener" href="https://visualprogramming.net/" class="d-flex"> | ||
<img class="card-img-top p-4" alt="logo" src="/images/sponsors/vvvv-logo.svg" /> | ||
</a> | ||
</div> | ||
<div class="card-body"> | ||
<p class="card-text" style="min-height: 80px">A visual live-programming environment that takes you from rapid prototyping to final production.</p> | ||
<a target="_blank" rel="noopener" href="https://visualprogramming.net/" class="btn btn-outline-secondary stretched-link">Visit</a> | ||
<p class="mt-4"> | ||
<span class="badge bg-stride me-1 mb-1">Sponsor</span> | ||
<span class="badge bg-warning me-1 mb-1">Golden</span> | ||
<span class="badge bg-primary me-1 mb-1">Technology</span> | ||
<span class="badge bg-info me-1 mb-1">Visualisation</span> | ||
<span class="badge bg-success me-1 mb-1">Partner</span> | ||
</p> | ||
<div class="card-body px-5 pb-5"> | ||
<p class="card-text">A visual live-programming environment that takes you from rapid prototyping to final production.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-xxl-4"> | ||
<div class="col-sm-6 col-xxl-4 mb-2"> | ||
<div class="card text-center h-100"> | ||
<div class="bg-white d-flex justify-content-center" style="min-height: 200px"> | ||
<img class="card-img-top p-2" alt="Happenstance Games logo" src="/images/sponsors/HappenLogo.webp" style="width: 200px"> | ||
<div class="bg-white d-flex justify-content-center align-middle" style="min-height: 200px"> | ||
<a target="_blank" rel="noopener" href="https://store.steampowered.com/search/?publisher=Happenstance%20Games" class="d-flex"> | ||
<img class="card-img-top p-2" alt="Happenstance Games logo" src="/images/sponsors/HappenLogo.webp" style="width: 200px" /> | ||
</a> | ||
</div> | ||
<div class="card-body"> | ||
<p class="card-text" style="min-height: 80px">An indie game studio with a primary focus on virtual reality (VR) experiences.</p> | ||
<a target="_blank" rel="noopener" href="http://www.happenstancegames.com/" class="btn btn-outline-secondary stretched-link">Visit</a> | ||
<p class="mt-4"> | ||
<span class="badge bg-stride me-1 mb-1">Sponsor</span> | ||
<span class="badge bg-warning me-1 mb-1">Platinum</span> | ||
<span class="badge bg-info me-1 mb-1">VR</span> | ||
</p> | ||
<div class="card-body px-5 pb-5"> | ||
<p class="card-text">An indie game studio with a primary focus on virtual reality (VR) experiences.</p> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<div class="intro-section"> | ||
<div class="container-fluid p-0"> | ||
<div class="intro-video"> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/SlipyjcEb0g?controls=0&autoplay=1&mute=1&loop=1&rel=0&playlist=SlipyjcEb0g" title="Stride YouTube demo" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | ||
</div> | ||
<div class="intro-content p-4 p-sm-5 d-flex align-items-end"> | ||
<div class="container-xxl"> | ||
<div class="hero-video-text"> | ||
<h1 class="h1 mb-3 text-light mb-3 display-5 fw-bold">Stride Game Engine</h1> | ||
<p class="text-light mb-2 lead fw-normal">Stride is a free and <a href="{{ site.links.github-stride-url }}" target="_blank" rel="noopener">open-source</a><br class="d-md-none" /> cross-platform C# game engine. | ||
<p class="text-light mb-4 lead fw-normal">It is fit for both 2D and 3D games, as well as any other interactive content <br class="d-none d-md-inline" /> running on desktop, mobile and VR.</p> | ||
<div class="row g-2 g-md-3 mb-3"> | ||
<div class="col-auto"> | ||
<a href="/download/" class="btn btn-lg btn-stride"> | ||
<i class="fa-solid fa-download"></i> Download {{ site.download-version }} | ||
</a> | ||
</div> | ||
<div class="col-auto"> | ||
<a href="{{ site.links.open-collective-url }}" class="btn btn-lg btn-info" target="_blank" rel="noopener"> | ||
{% include svg-icons.html type:'open-collective' size:22 %} Donate to our Collective | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</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
Oops, something went wrong.