Browse Source

Updated Grid Miner presskit

James Peret 2 years ago
parent
commit
6a82fbf8d7

+ 3 - 3
source/_posts/games/grid-miner.md

@@ -10,10 +10,10 @@ developer_url: http://kairoscope.net
 publisher: Kairoscope
 publisher_url: http://kairoscope.net
 genre: Strategy, puzzle
-platforms: Windows PC and Mac
+platforms: Windows PC
 released: false
-release: November 20th 2021
-game_modes: Singleplayer campaign
+release: May 3rd 2022
+game_modes: Singleplayer
 email: kairoscope.games[at]gmail.com
 twitter_dev: kairoscopegames
 trailer: https://www.youtube.com/embed/rn6jtgRvuIY

+ 34 - 0
source/games/grid-miner/presskit/index.md

@@ -4,6 +4,40 @@ id: grid-miner-preskit
 target_id: grid-miner
 content_type: presskit
 layout: presskit
+links:
+  - name: Grid Miner on Steam
+    link: http://store.steampowered.com/app/1768300/
+    favicon: /favicon-steam.png
+  - name: Update v0.8.0 - New content, mechanics and achievements - Steam News
+    link: https://store.steampowered.com/news/app/1768300/view/3194749759250401418
+    favicon: /favicon-steam.png
+  - name: Update v0.7.0 - New UI, Building colors and bug fixes - Steam News
+    link: https://store.steampowered.com/news/app/1768300/view/4894847933361592079
+    favicon: /favicon-steam.png
+  - name: Grid Miner Trailer - Kairoscope Youtube Channel
+    link: https://www.youtube.com/watch?v=rn6jtgRvuIY
+    favicon: /favicon-youtube.png
+  - name: Grid Miner - First Look [ Asteroid Mining Puzzler ] - GliderCat Youtube Channel
+    link: https://www.youtube.com/watch?v=tbILWEFR-EQ
+    favicon: /favicon-youtube.png
+  - name: Kairoscope Presskit
+    link: /presskits/company/
+    favicon: /favicon-16x16.png
+  - name: Grid Miner Launch Date - Kairoscope Blog
+    link: /blog/grid-miner-launch-date/
+    favicon: /favicon-16x16.png
+  - name: Grid Miner Announcement - Kairoscope Blog
+    link: /blog/grid-miner-announcement/
+    favicon: /favicon-16x16.png
+  - name: Grid Miner Launch Date - James Peret Blog
+    link: https://jamesperet.com/blog/grid-miner-launch-date/
+    favicon: /favicon-jamesperet.png
+  - name: Grid Miner Development - James Peret Blog
+    link: https://jamesperet.com/blog/grid-miner-development/
+    favicon: /favicon-jamesperet.png
+  - name: Grid Miner - Indie DB
+    link: https://www.indiedb.com/games/grid-miner
+    favicon: /favicon-indiedb.ico
 ---
 
 ## About This Game

+ 20 - 0
themes/kairoscope-theme/layout/presskit.ejs

@@ -177,10 +177,30 @@
                     </div>
                 <% } %>           
             <% } %>
+        </div>
+    </section>
+    <% if(page.links != undefined) { %>
+    <section class="container" style="margin-bottom: 80px;">
+        <div class="row">
+            <div class="col-12" style="padding-bottom: 20px;">
+                <h2 class="presskit">Links</h2>
+            </div>
+        </div>
+        <div class="row">
+            <div class="col-md-12">
+                <ul>
+                    <% for (const link of page.links) { %>
+                        <li class="favicon-link" style="list-style-image: url('<%- link.favicon %>');">
+                            <a href="<%- link.link %>"><%- link.name %></a>
+                        </li>
+                    <% } %>
+                </ul>
             </div>
         </div>
     </section>
+    <% } %>
 </main>
+
 <footer>
     <div class="container text-center spacer-bottom" style="padding-top: 100px;">
         <div class="row justify-content-center">

+ 5 - 0
themes/kairoscope-theme/source/css/style.styl

@@ -287,4 +287,9 @@ li {
 }
 .nav-link:hover { 
     color: alt_color;
+}
+
+.favicon-link {
+    font-size: 18px;
+    display: list-item;
 }