This repository has been archived by the owner on Feb 17, 2021. It is now read-only.
-
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.
make page templating work (not yet implementing the design)
- Loading branch information
1 parent
9dfe887
commit cf9f637
Showing
8 changed files
with
114 additions
and
76 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 |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
/.tmp/ | ||
/.sass-cache/ | ||
/.env | ||
/data.json | ||
/client/words.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{> top }} | ||
<a href="../">Guffipedia ></a> | ||
<main> | ||
<h1>{{word}}</h1> | ||
|
||
{{#each definitions}} | ||
<h5>Definition</h5> | ||
<p>{{definition}}</p> | ||
{{/each}} | ||
</main> | ||
{{> bottom }} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{> top }} | ||
<main> | ||
<h1>GUFFIPEDIA</h1> | ||
|
||
<ul> | ||
{{#each words}} | ||
<li><a href="{{@key}}/">{{word}}</a></li> | ||
{{/each}} | ||
</ul> | ||
</main> | ||
{{> bottom }} |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!doctype html> | ||
<html lang="en-GB" class="core"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="format-detection" content="telephone=no"> | ||
|
||
<link rel="shortcut icon" href="https://ig.ft.com/favicon.ico" type="image/x-icon"> | ||
<link rel="apple-touch-icon" href="//im.ft-static.com/m/icons/apple-touch-icon.png"> | ||
|
||
{{#if word}}<base href="../">{{/if}} | ||
|
||
<title>{{pageTitle}}</title> | ||
<!-- <meta name="description" content="ENTER A DESCRIPTION HERE"> --> | ||
|
||
<!-- smoosh --> | ||
<!-- build:js scripts/top.js --> | ||
<script src="scripts/top.js"></script> | ||
<!-- endbuild --> | ||
<!-- endsmoosh --> | ||
|
||
<!-- smoosh --> | ||
<!-- build:css styles/top.css --> | ||
<link rel="stylesheet" href="styles/top.css"> | ||
<!-- endbuild --> | ||
<!-- endsmoosh --> | ||
|
||
<!-- build:css styles/main.css --> | ||
<link rel="stylesheet" href="bower_components/normalize.css/normalize.css"> | ||
<link rel="stylesheet" href="styles/main.css"> | ||
<!-- endbuild --> | ||
</head> | ||
<body> | ||
<header class="site-header"> | ||
<a href="http://www.ft.com/"> | ||
<img class="masthead" src="https://image.webservices.ft.com/v1/images/raw/fticon:brand-ft-masthead?source=ft-interactive"> | ||
</a> | ||
</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
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