-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bootstrap 5 in progress * buttons and stuff * more icons and buttons... * button positioning * removed bootstrap 3 * npm ci in github actions * node version 20 * no packagelog * npm install defaul
- Loading branch information
1 parent
ca5653c
commit c51b9e9
Showing
214 changed files
with
889 additions
and
87,025 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ npm-debug.log* | |
out | ||
debug.log | ||
.DS_Store | ||
package-log.json |
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 |
---|---|---|
@@ -1,24 +1,21 @@ | ||
<head> | ||
|
||
<meta charset="utf-8"/> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
|
||
<title>{{ title }}</title> | ||
<title>{{ title }}</title> | ||
|
||
<meta name="description" content="HaxeFlixel is a 2D Game Engine that lets you create cross-platform games easier with free, open source technology!"/> | ||
<meta name="keywords" content="<%= @keywords %>"/> | ||
<meta name="author" content="<%= @author %>"/> | ||
<meta name="viewport" content="width=device-width"/> | ||
<meta name="description" content="HaxeFlixel is a 2D Game Engine that lets you create cross-platform games easier with free, open source technology!" /> | ||
<meta name="keywords" content="<%= @keywords %>" /> | ||
<meta name="author" content="<%= @author %>" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<link rel="icon" href="/images/haxeflixel.svg"> | ||
<link rel="shortcut icon" href="/images/favicon.ico"> | ||
<link rel="icon" href="/images/haxeflixel.svg"> | ||
<link rel="shortcut icon" href="/images/favicon.ico"> | ||
|
||
<!--[if lt IE 9]> | ||
<script async src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
|
||
{% comment %} <%- @styles %> {% endcomment %} | ||
<link rel="stylesheet" href="/styles/style.css"> | ||
|
||
</head> | ||
<!-- [if lt IE 9]> | ||
<script async src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif] --> | ||
{% comment %} <%- @styles %> {% endcomment %} | ||
<link rel="stylesheet" href="/styles/style.css"> | ||
</head> |
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,63 +1,79 @@ | ||
<header> | ||
<nav> | ||
|
||
<div class="navbar navbar-inverse navbar-fixed-top"> | ||
<div class="container"> | ||
|
||
<div class="navbar-header"> | ||
<button data-target=".navbar-collapse" data-toggle="collapse" class="navbar-toggle" type="button"> | ||
<span class="icon-bar" /> | ||
<span class="icon-bar" /> | ||
<span class="icon-bar" /> | ||
</button> | ||
<a href="/" class="navbar-brand"><img src="/images/haxeflixel-header.svg" height="31" alt="HaxeFlixel" /></a> | ||
</div> | ||
|
||
<div class="navbar-collapse collapse"> | ||
|
||
<ul class="nav navbar-nav"> | ||
|
||
<li class="dropdown {% dropdownActive 'demos' %}"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Examples <span class="caret"></span></a> | ||
<ul class="dropdown-menu inverse-dropdown"> | ||
<li><a href="/demos">Demos</a></li> | ||
<li><a href="https://snippets.haxeflixel.com/">Snippets</a></li> | ||
</ul> | ||
</li> | ||
|
||
<li class={% dropdownActive 'showcase' %}> | ||
<a href="/showcase">Showcase</a> | ||
</li> | ||
|
||
{% comment %} <li <%= @ablog %>> {% endcomment %} | ||
<li class={% dropdownActive 'blog' %}> | ||
<a href="/blog">Blog</a> | ||
</li> | ||
|
||
{% comment %} <li <%= @adocs %>> {% endcomment %} | ||
<li class={% dropdownActive 'documentation' %}> | ||
<a href="/documentation">Docs</a> | ||
</li> | ||
|
||
<li > | ||
<a href="http://api.haxeflixel.com">API</a> | ||
</li> | ||
|
||
{% comment %} <li <%= @aforum %>> {% endcomment %} | ||
<li> | ||
<a href="https://github.com/HaxeFlixel/flixel/discussions">Forum</a> | ||
</li> | ||
|
||
</ul> | ||
|
||
{% renderFile "./11ty-source/_layouts/partials/search.html" %} | ||
{% comment %} <%- @partial('search.html') %> {% endcomment %} | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</nav> | ||
<nav class="navbar navbar-expand-lg bg-body-tertiary"> | ||
<div class="container-fluid"> | ||
|
||
<a href="/" class="navbar-brand"><img | ||
src="/images/haxeflixel-header.svg" | ||
height="31" | ||
alt="HaxeFlixel" /></a> | ||
|
||
<button | ||
class="navbar-toggler" | ||
type="button" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#navbarSupportedContent" | ||
aria-controls="navbarSupportedContent" | ||
aria-expanded="false" | ||
aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
|
||
<div class="collapse navbar-collapse" id="navbarNavDropdown"> | ||
|
||
<ul class="navbar-nav"> | ||
|
||
<li class="nav-item dropdown {% dropdownActive 'demos' %}"> | ||
<a | ||
href="#" | ||
class="nav-link dropdown-toggle" | ||
data-bs-toggle="dropdown" | ||
role="button" | ||
aria-expanded="false">Examples | ||
<span class="caret"></span> | ||
</a> | ||
<ul class="dropdown-menu inverse-dropdown"> | ||
<li> | ||
<a class="dropdown-item" href="/demos">Demos</a> | ||
</li> | ||
<li> | ||
<a class="dropdown-item" href="https://snippets.haxeflixel.com/">Snippets</a> | ||
</li> | ||
</ul> | ||
</li> | ||
|
||
<li class="nav-item {% dropdownActive 'showcase' %}"> | ||
<a class="nav-link" href="/showcase">Showcase</a> | ||
</li> | ||
|
||
{% comment %} <li <%= @ablog %>> {% endcomment %} | ||
<li class="nav-item {% dropdownActive 'blog' %}"> | ||
<a class="nav-link" href="/blog">Blog</a> | ||
</li> | ||
|
||
{% comment %} <li <%= @adocs %>> {% endcomment %} | ||
<li class="nav-item {% dropdownActive 'documentation' %}"> | ||
<a class="nav-link" href="/documentation">Docs</a> | ||
</li> | ||
|
||
<li class="nav-item"> | ||
<a class="nav-link" href="http://api.haxeflixel.com">API</a> | ||
</li> | ||
|
||
{% comment %} <li <%= @aforum %>> {% endcomment %} | ||
<li class="nav-item"> | ||
<a class="nav-link" href="https://github.com/HaxeFlixel/flixel/discussions">Forum</a> | ||
</li> | ||
|
||
</ul> | ||
|
||
{% renderFile "./11ty-source/_layouts/partials/search.html" %} | ||
{% comment %} <%- @partial('search.html') %> {% endcomment %} | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
|
||
</nav> | ||
</header> |
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,2 +1,5 @@ | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" | ||
crossorigin="anonymous"></script> |
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,7 +1,3 @@ | ||
--- | ||
permalink: 11ty-bundle.js | ||
--- | ||
|
||
{% include "../src/files/vendor/twitter-bootstrap-3/js/dropdown.js"%} | ||
{% include "../src/files/vendor/twitter-bootstrap-3/js/transition.js"%} | ||
{% include "../src/files/vendor/twitter-bootstrap-3/js/collapse.js"%} |
Oops, something went wrong.