@extends('nexus.layouts.app') @section('page-title', $mode === 'new' ? 'New Post' : 'Edit: ' . $slug) @section('sys-mode', 'BLOG') @php $fm = old() ?: $frontmatter; $get = fn($k, $d = '') => old($k, $fm[$k] ?? $d); $kwRaw = $get('keywords', []); $keywordsStr = is_array($kwRaw) ? implode(', ', $kwRaw) : $kwRaw; $field = "width: 100%; padding: 9px 11px; background: #0a0a0a; border: 1px solid #2a2a2a; color: #eaeaea; font-family: 'IBM Plex Mono', monospace; font-size: 12px; border-radius: 2px; box-sizing: border-box; outline: none; transition: border-color 0.15s;"; $label = "display: block; font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #7a7a7a; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;"; $panel = "background: #111; border-top: 1px solid #2a2a2a; padding: 20px 24px; margin-bottom: 16px;"; $sectionH = "font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #7a7a7a; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px;"; $req = '*'; @endphp @section('head') @endsection @section('content')
{{ $slug }}
@endif