Skip to content

Commit

Permalink
fix some issues and bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Bezuska committed Feb 20, 2023
1 parent 07917e0 commit ce1c118
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
4 changes: 4 additions & 0 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ h1:hover{
transform: rotate(2deg);
}

h1 i{
margin-right: 10px;
}

table{
color: white;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<div class="col-md-7">
<h2 class="mb-4"><i class="fas fa-building"></i>What is Warp Zone?</h2>
<p>Warp Zone Louisville is a coworking space for anyone doing creative work! It is also the home base of LMG and
where we host our events. All LMG events are free and open to the public, but you work from Warp Zone Louisville
where we host our events. All LMG events are free and open to the public, but you can work from Warp Zone Louisville
24/7 if you become a paid member.</p>


Expand Down
14 changes: 5 additions & 9 deletions src/pages/resources.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</li>
<li class="nav-item" role="presentation">
<button class="nav-link text-light" id="resources-tab" data-bs-toggle="tab" data-bs-target="#resources"
type="button" role="tab" aria-controls="resources" aria-selected="false">Resources</button>
type="button" role="tab" aria-controls="resources" aria-selected="false">Helpful Links</button>
</li>

<li class="nav-item" role="presentation">
Expand Down Expand Up @@ -238,7 +238,7 @@


<div class="tab-pane fade" id="resources" role="tabpanel" aria-labelledby="resources-tab">
<h1>Other Resources</h1>
<h1>Helpful Links</h1>
<h2>Game Design Patterns</h2>
<ul>
<li><a href="http://gameprogrammingpatterns.com/" target="_blank">Game Programming Patterns</a> – A collection
Expand Down Expand Up @@ -289,12 +289,8 @@
<ul>
<li><a href="https://docs.google.com/document/d/1A9DB-Lq69MC-P_powcAHLVCuVgifxHDFSLW0VSr-Ia0/edit?usp=sharing"
target="_blank">Post Mortem Template </a> - A template for writing about your game jam projects.</li>
<li><a href="http://www.cutoutpro.com/download.html" target="_blank">Cut Out Pro</a> - A free tool for making 2D
animations and sprites.</li>
<li><a href="http://www.spriters-resource.com/" target="_blank">The Spriters Resource</a> - A website with a
collection of video game sprites and other game assets.</li>
<li><a href="http://www.darkfunction.com/editor/" target="_blank">DarkFunction Editor</a> - A level editor for
creating 2D platformer games.</li>
</ul>


Expand All @@ -321,16 +317,16 @@
<p>Creative Commons Zero (CC0) is a public domain license that allows for free use of an asset without
attribution. However, most other licenses do require some form of attribution, which means giving credit
to the original artist for their work. The MIT license is one example of a license that requires
attribution. Game developers should also be wary of "infectious" licenses like the GPL, which requires
that any derivative works also be released under the GPL license.</p>
attribution. Game developers should also be wary of "viral" licenses like the GPL v3, which requires
that any derivative works also be released under the GPL v3 license.</p>

<h3>Giving Credit to Artists</h3>
<p>When using other people's work in game projects, it's important to make sure that the artist receives
proper credit. This can be done through including the artist's name in the game credits or on the game's
page on a jam site, for example.</p>

<h2>TL;DR:</h2>
<p>Use Creative Commons or MIT licensed assets, avoid GPL, and credit the artist.</p>
<p>Use Creative Commons or MIT licensed assets, be wary of GPL, and credit the artist.</p>
</div>
<div class="col-md-5">
{{!-- <img src="https://via.placeholder.com/150" alt="placeholder image"> --}}
Expand Down
14 changes: 7 additions & 7 deletions src/partials/header.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Louisville Makes Games! - Game development community in Louisville, Kentucky</title>
<meta property="og:title" content=Louisville Makes Games! - Game development community in Louisville, Kentucky>
<meta property="og:site_name" content=Louisville Makes Games>
<meta property="og:url" content=http://louisvillemakesgames.org>
<meta property="og:description" content=Calling all Artists, Animators, Storytellers, Programmers, Musicians, and all creative folks – this is the community for you! Louisville Makes Games is an inclusive community created to connect and support anyone in the Louisville, Kentucky area who wants to create games! The main ways to get involved are to join our discord server or attend a meetup event!>
<meta property="og:type" content=website>
<meta property="og:image" content="img/LouisvilleMakesGamesShareImage.jpg">
<meta property="og:title" content="Louisville Makes Games! - Game development community in Louisville, Kentucky">
<meta property="og:site_name" content="Louisville Makes Games">
<meta property="og:url" content="http://louisvillemakesgames.org">
<meta property="og:description" content="Calling all Artists, Animators, Storytellers, Programmers, Musicians, and all creative folks – this is the community for you! Louisville Makes Games is an inclusive community created to connect and support anyone in the Louisville, Kentucky area who wants to create games!">
<meta property="og:type" content="website">
<meta property="og:image" content="/img/LouisvilleMakesGamesShareImage.jpg">

<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
Expand All @@ -38,7 +38,7 @@

<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#"><img src="img/Louisville-Makes-Games-logo.svg" style="max-width: 250px;"></a>
<a class="navbar-brand" href="index.html"><img src="img/Louisville-Makes-Games-logo.svg" style="max-width: 250px;"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand Down

0 comments on commit ce1c118

Please sign in to comment.