Files
nibiru-framework.com/application/view/mockup/template/less/modules/_article.less
stephan 48c839d927 Initial public push: docs cosmos v4 + AI module + framework groundwork
This is the snapshot the production landing site (nibiru-framework.com) is
deployed from. Brings together the recent splash + docs migration to the v4
"Cosmos" design system, the new in-framework AI module, and the framework
groundwork that backs the framework-reference extraction.

What lands:
- docs/: Astro + Starlight site with the v4 dark cosmic palette, GalaxyHero
  canvas constellation, Mission Control chat (wired to /api/oracle →
  api.neuronetz.ai via providers.mjs Ollama), 5-panel MMVC stage
  (Model · AI · Module · Controller · View), translated EN/DE/JA/ES/FR
  content, PWA + sitemap + llms.txt + Umami analytics.
- docs/design-system/: canonical mockup bundle (source/index-v2.html for
  splash, source/docs-system.html + preview/ for docs, SPEC.md, tokens).
- docs/scripts/extraction/framework-reference-v2.md: deep framework
  reference (~1.6k lines, file:line citations, every public factory and
  idiom — basis for the LoRA training corpus.
- application/module/ai/: AI module with chat / embed / RAG / agent
  plugins, plus pdoQuery / httpGet / fileRead tools and Modelfile +
  smoke-test in training/.
- application/module/users/: user / ACL / form-factory traits used as the
  reference plugin pattern for the framework docs.
- application/settings/config/database/: schema + seed migrations
  including the AI module tables (200–203).
- Form factory + autogenerator changes the framework-reference-v2 covers.

Production secrets stay out: docs/.env, settings.production.ini and
ai.production.ini are all gitignored (.example files are in tree).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 15:22:18 +02:00

182 lines
2.8 KiB
Plaintext

.article{
}
.article-title{
margin: 0 0 20px 0;
line-height: 1.2;
.fz(40);
}
// Article meta
.article-meta{
margin: 0 0 10px 0;
list-style-type: none;
font-size: 14px;
color: @color_grey;
font-weight: @font_light;
border-top: 1px solid @color_grey-light;
padding: 20px 0 10px 0;
&:after{
clear: both;
display: block;
content: '';
}
li{
float: left;
margin-right: 18px;
&:last-child{
margin: 0;
}
}
}
.article-meta-item{
padding-left: 25px;
position: relative;
a{
color: inherit;
&:hover{
color: @color_blue;
}
}
&:before{
position: absolute;
content: '';
display: block;
left: 0;
top: 0;
font-family: @icons-stroke;
font-size: 20px;
line-height: 17px;
}
}
.article-meta-date:before{ content: '\e660' }
.article-meta-author:before{ content: '\e605' }
.article-meta-category:before{ content: '\e653' }
.article-meta-views:before{ content: '\e63e' }
.article-meta-comments:before{ content: '\e668' }
.article-meta-likes:before{ content: '\e642' }
.article-featured-image{
max-width: 100%;
margin-bottom: 40px;
}
.article-subtitle{
.fz(24);
margin-bottom: 20px;
}
.article-content{
.fz(19);
line-height: 1.5;
margin-bottom: 30px;
padding-bottom: 10px;
border-bottom: 1px solid @color_grey-light;
}
.article-media{
margin: 30px 0;
.fluid-width-video-wrapper{
margin: 0;
}
}
.article-tags{
font-weight: @font_light;
margin-bottom: 20px;
color: @color_grey-dark;
padding-top: 10px;
.fz(14);
}
.article-tag{
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
background-color: @color_grey-lighter;
color: @color_grey-dark;
padding: 5px 10px;
margin-left: 2px;
margin-bottom: 6px;
}
.article-navigation{
padding-bottom: 30px;
border-bottom: 1px solid @color_grey-light;
margin-bottom: 30px;
&:after{
display: block;
content: '';
clear: both;
}
}
.article-navigation-prev, .article-navigation-next{
display: block;
font-weight: @font_light;
color: @color_grey-dark;
position: relative;
&:before{
font-family: @icons-stroke;
content: '';
display: block;
position: absolute;
top: 0;
font-size: 35px;
width: 15px;
text-align: center;
text-indent: -8px;
}
}
.article-navigation-prev{
padding-left: 20px;
float: left;
&:before{
content: '\e686';
left: 0;
}
}
.article-navigation-next{
padding-right: 15px;
float: right;
&:before{
content: '\e684';
right: 0;
}
}
.article-widget{
margin-bottom: 30px;
}
.article-widget-title{
.fz(22);
}
.article-related-articles{
list-style: none;
margin: 0;
padding: 0;
font-weight: @font_light;
li{
padding: 5px 0;
}
}