Replace all 676 inline sexp() string calls across 7 services with render(component_name, **kwargs) calls backed by 46 external .sexpr component definition files (587 defcomps total). - Add render() function to shared/sexp/jinja_bridge.py - Add load_service_components() helper and update load_sexp_dir() for *.sexpr - Update parser keyword regex to support HTMX hx-on::event syntax - Convert remaining inline HTML in route files to render() calls - Add shared/sexp/templates/misc.sexp for cross-service utility components Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
556 B
Plaintext
20 lines
556 B
Plaintext
;; Market meta/SEO components
|
|
|
|
(defcomp ~market-meta-title (&key title)
|
|
(title title))
|
|
|
|
(defcomp ~market-meta-description (&key description)
|
|
(meta :name "description" :content description))
|
|
|
|
(defcomp ~market-meta-canonical (&key href)
|
|
(link :rel "canonical" :href href))
|
|
|
|
(defcomp ~market-meta-og (&key property content)
|
|
(meta :property property :content content))
|
|
|
|
(defcomp ~market-meta-twitter (&key name content)
|
|
(meta :name name :content content))
|
|
|
|
(defcomp ~market-meta-jsonld (&key json)
|
|
(script :type "application/ld+json" (raw! json)))
|