-
-
Notifications
You must be signed in to change notification settings - Fork 28
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 #60 from Foblex/examples-docs
update to f-docs 1.38
- Loading branch information
Showing
9 changed files
with
86 additions
and
6 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
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
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,8 @@ | ||
<div class="content"> | ||
<div class="flex-space"></div> | ||
<div> | ||
<div class="item">Created with Foblex MarkEngine</div> | ||
<div class="item">MIT License | Copyright © 2022 - Present</div> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
:host { | ||
position: relative; | ||
z-index: 5; | ||
padding: 0 24px; | ||
|
||
.content { | ||
display: flex; | ||
justify-content: flex-start; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
height: 64px; | ||
max-width: calc(1440px - 64px); | ||
margin: 0 auto; | ||
} | ||
|
||
.item { | ||
line-height: 20px; | ||
font-size: 12px; | ||
font-weight: 500; | ||
color: var(--secondary-text); | ||
text-align: right; | ||
} | ||
|
||
@media (min-width: 640px) { | ||
padding: 0 48px; | ||
} | ||
|
||
@media (min-width: 960px) { | ||
padding: 0 64px; | ||
} | ||
} |
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 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'not-found-page', | ||
templateUrl: './not-found-page.component.html', | ||
styleUrl: './not-found-page.component.scss', | ||
standalone: true, | ||
}) | ||
export class NotFoundPageComponent { | ||
|
||
} |
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 |
---|---|---|
|
@@ -49,6 +49,30 @@ | |
<meta name="apple-mobile-web-app-status-bar-style" content="default" /> | ||
<meta name="theme-color" content="#FFFFFF"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" /> | ||
|
||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
"@type": "WebSite", | ||
"name": "Foblex Flow", | ||
"url": "https://flow.foblex.com/", | ||
"description": "An Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.", | ||
"creator": { | ||
"@type": "Organization", | ||
"name": "Foblex", | ||
"url": "https://flow.foblex.com/", | ||
"logo": "https://flow.foblex.com/favicons/android-chrome-512x512.png", | ||
"sameAs": [ | ||
"https://github.com/Foblex/f-flow", | ||
"https://twitter.com/foblexflow" | ||
] | ||
}, | ||
"mainEntityOfPage": { | ||
"@type": "WebPage", | ||
"@id": "https://flow.foblex.com/" | ||
} | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
|