Here goes something
This commit is contained in:
commit
a7d944bbd4
16 changed files with 2700 additions and 0 deletions
72
static/graph.toml
Normal file
72
static/graph.toml
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
messages = [ "Test Graph over Fetch from Actix" ]
|
||||
root_node = "Interface"
|
||||
|
||||
[nodes.SomeNode]
|
||||
title = "Some Node"
|
||||
id = "SomeNode"
|
||||
body = "This describes some node in relation to some other node."
|
||||
|
||||
[[nodes.SomeNode.connections]]
|
||||
anchor = "some other node"
|
||||
to = "SomeOtherNode"
|
||||
|
||||
[nodes.SomeOtherNode]
|
||||
title = "Some Other Node"
|
||||
id = "SomeOtherNode"
|
||||
body = "This describes some other node in relation to the first node."
|
||||
|
||||
[[nodes.SomeOtherNode.connections]]
|
||||
anchor = "the first node"
|
||||
to = "SomeNode"
|
||||
|
||||
[nodes.Interface]
|
||||
title = "Interface"
|
||||
id = "Interface"
|
||||
body = """
|
||||
An interface is a point of contact between the inside and the outside of something. Contrast with intraface.
|
||||
"""
|
||||
|
||||
[[nodes.Interface.connections]]
|
||||
to = "Intraface"
|
||||
|
||||
[nodes.Intraface]
|
||||
title = "Intraface"
|
||||
id = "Intraface"
|
||||
body = """
|
||||
The intraface is the reflexive process of communicating, creating, thinking, that does not or cannot get shared with others. Contrast with interface.
|
||||
"""
|
||||
|
||||
[[nodes.Intraface.connections]]
|
||||
to = "Interface"
|
||||
|
||||
[[nodes.Intraface.connections]]
|
||||
to = "Thinking"
|
||||
|
||||
[nodes.Thinking]
|
||||
title = "Thinking"
|
||||
id = "Thinking"
|
||||
body = """
|
||||
Thinking is a process by which some beings create and manipulate mental constructs.
|
||||
"""
|
||||
|
||||
[nodes.Paradigm]
|
||||
title = "Paradigm"
|
||||
id = "Paradigm"
|
||||
body = """
|
||||
A paradigm is a cohesive set of beliefs, methods and principles that serve both as justification for a given position and as guidance for how to pursue its praxis.
|
||||
"""
|
||||
|
||||
[[nodes.Paradigm.connections]]
|
||||
to = "Belief"
|
||||
|
||||
[[nodes.Paradigm.connections]]
|
||||
to = "Method"
|
||||
|
||||
[[nodes.Paradigm.connections]]
|
||||
to = "Principle"
|
||||
|
||||
[[nodes.Paradigm.connections]]
|
||||
to = "Position"
|
||||
|
||||
[[nodes.Paradigm.connections]]
|
||||
to = "Praxis"
|
||||
26
static/style.css
Normal file
26
static/style.css
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
* {
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
}
|
||||
|
||||
footer div {
|
||||
margin: 20px 0;
|
||||
text-align: center;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
* {
|
||||
background-color: #222222;
|
||||
color: #f1e9e5;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue