-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2085260
commit 1b39b17
Showing
6 changed files
with
34 additions
and
22 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ import sitemap from "lume/plugins/sitemap.ts"; | |
import source_maps from "lume/plugins/source_maps.ts"; | ||
import sri from "lume/plugins/sri.ts"; | ||
import terser from "lume/plugins/terser.ts"; | ||
import phosphor from "https://deno.land/x/[email protected]/phosphor.ts"; | ||
|
||
const site = lume( | ||
{ | ||
|
@@ -47,6 +48,7 @@ site.use(sitemap({ | |
site.use(source_maps()); | ||
site.use(sri()); | ||
site.use(terser()); | ||
site.use(phosphor()); | ||
|
||
site.copy("static/assets", "assets"); | ||
site.copy("static/portfolio", "portfolio"); | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,13 @@ | |
<footer style="background-image:url(/assets/footer_bg1sm.gif);" class="tc-l bg-center cover bg-black"> | ||
<div class="w-100 ph3 pv5 bg-black-80"> | ||
<p class="sns-links">[email protected]</p> | ||
<a rel="me" class="link white-90 bg-transparent hover-white inline-flex items-center ma2 tc br2 pa2" | ||
href="https://www.instagram.com/jo00oc/?hl=ja" title="instagram"> | ||
<svg class="dib h2 w2" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" | ||
fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"> | ||
<path | ||
d="M8 0C3.58 0 0 3.582 0 8c0 3.535 2.292 6.533 5.47 7.59.4.075.547-.172.547-.385 0-.19-.007-.693-.01-1.36-2.226.483-2.695-1.073-2.695-1.073-.364-.924-.89-1.17-.89-1.17-.725-.496.056-.486.056-.486.803.056 1.225.824 1.225.824.714 1.223 1.873.87 2.33.665.072-.517.278-.87.507-1.07-1.777-.2-3.644-.888-3.644-3.953 0-.873.31-1.587.823-2.147-.083-.202-.358-1.015.077-2.117 0 0 .672-.215 2.2.82.638-.178 1.323-.266 2.003-.27.68.004 1.364.092 2.003.27 1.527-1.035 2.198-.82 2.198-.82.437 1.102.163 1.915.08 2.117.513.56.823 1.274.823 2.147 0 3.073-1.87 3.75-3.653 3.947.287.246.543.735.543 1.48 0 1.07-.01 1.933-.01 2.195 0 .215.144.463.55.385C13.71 14.53 16 11.534 16 8c0-4.418-3.582-8-8-8" /> | ||
</svg> | ||
<a rel="me" class="link white-90 bg-transparent hover-red inline-flex items-center ma2 tc br2 pa2" | ||
href="https://www.instagram.com/jo00oc/?hl=ja" title="instagram">{{ "instagram-logo" |> phosphor("duotone") }} | ||
<span class="f6 ml3 pr2">Instagram</span> | ||
</a> | ||
<a rel="me" class="link white-90 bg-transparent hover-white inline-flex items-center ma2 tc br2 pa2" | ||
href="https://github.com/juliecogley" title="GitHub"> | ||
<svg class="dib h2 w2" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" | ||
fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"> | ||
<path | ||
d="M8 0C3.58 0 0 3.582 0 8c0 3.535 2.292 6.533 5.47 7.59.4.075.547-.172.547-.385 0-.19-.007-.693-.01-1.36-2.226.483-2.695-1.073-2.695-1.073-.364-.924-.89-1.17-.89-1.17-.725-.496.056-.486.056-.486.803.056 1.225.824 1.225.824.714 1.223 1.873.87 2.33.665.072-.517.278-.87.507-1.07-1.777-.2-3.644-.888-3.644-3.953 0-.873.31-1.587.823-2.147-.083-.202-.358-1.015.077-2.117 0 0 .672-.215 2.2.82.638-.178 1.323-.266 2.003-.27.68.004 1.364.092 2.003.27 1.527-1.035 2.198-.82 2.198-.82.437 1.102.163 1.915.08 2.117.513.56.823 1.274.823 2.147 0 3.073-1.87 3.75-3.653 3.947.287.246.543.735.543 1.48 0 1.07-.01 1.933-.01 2.195 0 .215.144.463.55.385C13.71 14.53 16 11.534 16 8c0-4.418-3.582-8-8-8" /> | ||
</svg> | ||
<a rel="me" class="link white-90 bg-transparent hover-red inline-flex items-center ma2 tc br2 pa2" | ||
href="https://github.com/juliecogley" | ||
title="GitHub">{{ "github-logo" |> phosphor("duotone") }} | ||
<span class="f6 ml3 pr2">GitHub</span> | ||
</a> | ||
</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
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