-
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.
Merge pull request #2 from TypeFox/layout-n-style
First style and layout
- Loading branch information
Showing
9 changed files
with
260 additions
and
67 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
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 |
---|---|---|
@@ -1,14 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="scroll-smooth"> | ||
<head> | ||
{{ partial "oct-head" . }} | ||
</head> | ||
|
||
<body> | ||
{{ partial "oct-header" . }} | ||
<main> | ||
{{ block "main" . }} | ||
{{ end }} | ||
</main> | ||
</body> | ||
<head> | ||
{{ partial "oct-head" . }} | ||
</head> | ||
|
||
<body> | ||
{{ partial "oct-header" . }} | ||
<main> | ||
{{ block "main" . }} | ||
{{ end }} | ||
</main> | ||
{{ partial "oct-footer" . }} | ||
</body> | ||
|
||
</html> |
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 @@ | ||
<footer class="barlow-light bg-red"> | ||
<div class="footer-content"> | ||
<a href="/privacy" class="fg-white">Privacy Policy</a> | ||
<p> • </p> | ||
<a href="/tos" class="fg-white">Terms of Use</a> | ||
<p> • </p> | ||
<div> | ||
Copyright ©️ <a href="https://www.typefox.io/" target="_blank" class="fg-white">TypeFox GmbH</a> | ||
</div> | ||
</div> | ||
</footer> |
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 |
---|---|---|
@@ -1,11 +1,18 @@ | ||
<header style="display: flex; flex-direction: row; position: sticky; border-bottom: 1px solid black;"> | ||
<a href="/#" style="flex-grow: 1; text-decoration: none;"> | ||
<h1 style="color: black;">Open Collaboration Tools</h1> | ||
</a> | ||
<nav style="display: flex; flex-direction: row; align-items: center;"> | ||
|
||
<a href="https://github.com/TypeFox/open-collaboration-tools" target="_blank"> | ||
<img src="/assets/github-mark.svg" alt="github repository" style="width: 43px; height: 43px;"> | ||
</a> | ||
</nav> | ||
<header class="bg-indigo-dark"> | ||
<div class="header-content"> | ||
<div class="logo-container"> | ||
<img src="/assets/logo.jpg" alt="Open Collaboration Tools Logo" style="width: 110px; height: 110px;"> | ||
<h1 class="barlow-regular fg-indigo-light" style="width: 140px; font-size: 24px;">Open Collaboration Tools</h1> | ||
</div> | ||
<nav> | ||
<a href="/#" class="urbanist-bold fg-indigo-light">Documentation</a> | ||
<a href="/#" class="urbanist-bold fg-indigo-light">Playground</a> | ||
<a href="/#" class="urbanist-bold fg-indigo-light">Support</a> | ||
</nav> | ||
<nav> | ||
<a href="https://github.com/TypeFox/open-collaboration-tools" target="_blank"> | ||
<img src="/assets/github-mark.svg" alt="github repository" style="width: 43px; height: 43px;"> | ||
</a> | ||
</nav> | ||
</div> | ||
</header> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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