Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow a paragraph in hub pages by using flex #267

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
85 changes: 85 additions & 0 deletions preview-src/docs-hub.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
= Neo4j Tools
:page-theme: docs
:page-role: hub
:page-layout: docs-ndl
:page-show-home-link: true
:page-hide-nav-title: true
// :page-disablefeedback: true
:page-toclevels: -1

[.display.cards.not-selectable]
== Developer tools documentation

Use Neo4j tools to query and manage your databases, import data, and create graphical visualizations.

=== Neo4j Bloom/Explore

[.icon]
image:icons/ndl/science-molecule.svg[]

[.description]
Visualize and explore graph data using natural language search and an intuitive and graphical interface.

[.link]
link:{docs-home}/bloom-user-guide/[Neo4j Bloom] +
link:{docs-home}/aura/preview/explore/introduction/[Explore (Aura)]

=== Neo4j Browser/Query

[.icon]
image:icons/ndl/data-science.svg[]

[.description]
Write and execute Cypher queries and visualize the results in nodes and relationships.

[.link]
link:{docs-home}/browser-manual/[Neo4j Browser] +
link:{docs-home}/aura/preview/query/introduction/[Query (Aura)]

[.display.card.selectable]

=== Neo4j Data Importer

[.category]
Neo4j Data Importer

[.icon]
image:icons/ndl/query-browser.svg[]

[.description]
Learn how to model and import data to your Neo4j database.

[.link]
link:{docs-home}/data-importer[]

[.display.card.selectable]

=== Neo4j Desktop

[.category]
Neo4j Desktop

[.icon]
image:icons/ndl/neo4j-tools.svg[]

[.description]
Learn how to experience Neo4j on your local desktop.

[.link]
link:{docs-home}/desktop-manual[]

[.display.card.selectable]

=== Neo4j Ops Manager

[.icon]
image:icons/ndl/query-browser.svg[]

[.category]
Neo4j Ops Manager

[.description]
Learn how to monitor, administer, and operate all of the Neo4j DBMSs in an Enterprise with Neo4j Ops Manager.

[.link]
link:{docs-home}/ops-manager[]
9 changes: 7 additions & 2 deletions preview-src/ui-model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,13 @@ page:
url: docs-ndl.html
urlType: internal
module: ROOT
- content: Docs Sub Hub
url: docs-sub-hub.html
- content: Docs Hub
url: docs-hub.html
urlType: internal
module: ROOT
items:
- content: Explainer
url: docs-explainer.html
urlType: internal
module: ROOT
items:
Expand Down
5 changes: 5 additions & 0 deletions src/css/docs-ndl.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,11 @@ body.docs-ndl .next-steps .sectionbody ul li div.paragraph {

/* explainer */

body.docs-ndl .cards .sectionbody > div.paragraph {
display: flex;
flex: 0 1 100%;
}

body.docs-ndl.explainer .sectionbody .video {
display: block;
width: 100%;
Expand Down