| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
A complete example of a custom Solid pane that displays and manages bookmarks.
bookmark-pane/ ├── README.md # This file ├── lazy.js # Lightweight wrapper (always loaded) ├── render.js # Full implementation (lazy loaded) └── styles.css # Pane styles
Uses schema.org Bookmark type:
@prefix schema: <http://schema.org/> .
<#bookmark1> a schema:Bookmark ;
schema:name "Example Site" ;
schema:url <https://example.com> ;
schema:description "A great website" ;
schema:dateCreated "2024-01-15" .import { register } from 'solid-panes-jss'
import { bookmarkPane } from './bookmark-pane/lazy.js'
register(bookmarkPane)<script type="module">
import { bookmarkPane } from 'https://example.com/bookmark-pane/lazy.js'
import { register } from 'solid-panes-jss'
register(bookmarkPane)
</script>The pane activates when viewing:
import { bookmarkPane } from './bookmark-pane/lazy.js'
register(bookmarkPane)| Back | FazBrowse Home | New Git URL |