Skip to content

Commit

Permalink
Merge pull request #100 from fission-codes/everywhere-computer
Browse files Browse the repository at this point in the history
Everywhere computer
  • Loading branch information
depatchedmode committed Feb 22, 2024
2 parents d623d13 + cc67778 commit c516955
Show file tree
Hide file tree
Showing 12 changed files with 2,469 additions and 2,908 deletions.
1,948 changes: 888 additions & 1,060 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "\"$npm_execpath\" run build"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-img": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@tryghost/content-api": "^1.5.7",
Expand Down
8 changes: 8 additions & 0 deletions src/_includes/layouts/default.njk
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@
<link rel="stylesheet" href="{{ "/stylesheet-new.css" | relativePath(page) }}" />
<script defer data-domain="fission.codes" src="https://plausible.io/js/script.js"></script>


<!-- Everywhere Computer related styles -->
<style>
.ec-logo-mg {
background-image: url('{{ "/images/ec-logo-mg.gif" | relativePath(page) }}');
}
</style>

<script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/components/prism-core.min.js" integrity="sha512-9khQRAUBYEJDCDVP2yw3LRUQvjJ0Pjx0EShmaQjcHa6AXiOv6qHQu9lCAIR8O+/D8FtaCoJ2c0Tf9Xo7hYH01Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/plugins/autoloader/prism-autoloader.min.js" integrity="sha512-fTl/qcO1VgvKtOMApX2PdZzkziyr2stM65GYPLGuYMnuMm1z2JLJG6XVU7C/mR+E7xBUqCivykuhlzfqxXBXbg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>

Expand Down
21 changes: 11 additions & 10 deletions src/_includes/macros/header.njk
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,34 @@
</a>

<ul class="hidden font-semibold lg:flex gap-5">
<li>
<a
href="{{ "/ecosystem" | relativePath(page) }}"
class="{% if '/ecosystem' in page.url %}text-pink-300{% endif %}">
● Ecosystem
</a>
</li>
<li>
<a
href="{{ "/team" | relativePath(page) }}"
class="{% if '/team' in page.url %}text-pink-300{% endif %}">
Our Team
Our Team
</a>
</li>
<li>
<a
href="{{ "/blog" | relativePath(page) }}"
class="{% if '/blog' in page.url %}text-pink-300{% endif %}">
Blog
Blog
</a>
</li>
<li>
<a
href="https://shop.fission.codes"
target="_blank"
class="flex items-center gap-1">
● Shop Fission Swag {{ ExternalLink() }}
Swag {{ ExternalLink() }}
</a>
</li>
<li>
<a
href="https://everywhere.computer"
target="_blank"
class="flex items-center gap-1">
Everywhere Computer {{ ExternalLink() }}
</a>
</li>
</ul>
Expand Down
12 changes: 1 addition & 11 deletions src/_includes/partials/footer.njk
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,7 @@
class="btn btn-primary font-semibold items-center gap-2 w-full bg-newneutral-700 text-newneutral-0 rounded-lg">
{{ DiscordOutline() }} Join Our Discord
</a>
<a aria-label="View the Fission Careers page"
href="{{ "/careers" | relativePath(page) }}"
target="_blank"
class="btn btn-outline font-normal items-center gap-2 w-full text-newneutral-0 rounded-lg border-newneutral-0 border">
Check Out Our Open Roles
</a>

<a aria-label="View the Fission Events page"
href="https://lu.ma/fissionevents"
target="_blank"
Expand All @@ -55,11 +50,6 @@

<div class="flex flex-col w-full gap-4 text-center lg:text-left">
<h5 class="text-sm lg:text-lg uppercase text-center font-semibold">Want to Learn More?</h5>
<a aria-label="View the Fission Ecosystem"
href="{{ "/ecosystem" | relativePath(page) }}"
class="btn btn-outline font-normal items-center gap-2 w-full text-newneutral-0 rounded-lg border-newneutral-0 border">
Explore Our Ecosystem
</a>
<a aria-label="View the Fission Blog"
href="{{ "/blog" | relativePath(page) }}"
class="btn btn-outline font-normal items-center gap-2 w-full text-newneutral-0 rounded-lg border-newneutral-0 border">
Expand Down
9 changes: 9 additions & 0 deletions src/css/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -543,3 +543,12 @@ code[class*=language-],pre[class*=language-]{color:#ccc;background:0 0;font-fami
.kg-audio-player-container input[type=range]:active::-ms-thumb {
transform: scale(1.2)
}

li::marker {
content: '●';
}

li {
padding-left: 0.25rem;
margin-left: 0.33rem;
}
Loading

0 comments on commit c516955

Please sign in to comment.