Skip to content
Open
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
11 changes: 11 additions & 0 deletions nuxt/components/content/SiteValue.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<template>{{ value }}</template>

<script setup>
import site from '../../../src/_data/site.json'

const props = defineProps({
path: { type: String, required: true }
})

const value = props.path.split('.').reduce((obj, key) => obj?.[key], site) ?? ''
</script>
14 changes: 10 additions & 4 deletions nuxt/content/handbook/marketing/messaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,22 @@ FlowFuse is the open-source Industrial Application Platform.

### Tagline

{{ site.messaging.tagLine }}
:site-value{path="messaging.tagLine"}

### FlowFuse in one sentence - Under 150 characters

{{ site.messaging.subtitle }}
:site-value{path="messaging.subtitle"}

### About FlowFuse - Short form

FlowFuse is the enterprise platform that bridges the gap between physical assets and enterprise IT, delivering consistency at scale instead of one-off project "snowflakes." Powered by Node-RED, teams unify real-time data through workflows, AI agents, and industrial applications, extending rigid vendor systems with a low-code agility layer that adapts without rip-and-replace. FlowFuse orchestrates lightweight, event-based data flows between the shop floor and the top floor only when real-world events occur, giving organizations the confidence to innovate and unlock new value in industrial automation.

FlowFuse is the enterprise platform that bridges the gap between physical assets
and enterprise IT, delivering consistency at scale instead of one-off project
"snowflakes." Powered by Node-RED, teams unify real-time data through workflows,
AI agents, and industrial applications, extending rigid vendor systems with a
low-code agility layer that adapts without rip-and-replace. FlowFuse
orchestrates lightweight, event-based data flows between the shop floor and the
top floor only when real-world events occur, giving organizations the confidence
to innovate and unlock new value in industrial automation.

## FlowFuse in-depth

Expand Down
2 changes: 1 addition & 1 deletion nuxt/content/handbook/marketing/website.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ They are still output in the HTML on 11ty-served pages and may be used by site-s

### Default Keywords

By default, each 11ty-served webpage on the FlowFuse website includes a set of predefined keywords: **{{ site.messaging.keywords }}**. These default keywords are relevant to the overall theme of the website.
By default, each 11ty-served webpage on the FlowFuse website includes a set of predefined keywords: **:site-value{path="messaging.keywords"}**. These default keywords are relevant to the overall theme of the website.

### Priority of Keywords

Expand Down