David Vogel
e9c2353da3
- Add AttributesAppend type - Add icon class and add styles to icons - Change elements to use AttributesAppend in vg-attr - Move example icons into their own component
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
<div>
|
|
<layout:Container>
|
|
<h1>Home</h1>
|
|
<p>Lorem ipsum dolor sit am et</p>
|
|
<view:Code>
|
|
asdfefefeaf afe aef aef aef aef aef<br>
|
|
asdwfaefa efae fae faef ae<br>
|
|
u4iewgooijqoie ioigq oiegq eog qoeg
|
|
</view:Code>
|
|
<input:Button>
|
|
<vg-slot name="SymbolSlot"><icons:LGlobe></icons:LGlobe></vg-slot>
|
|
<vg-slot name="DefaultSlot">Some Button</vg-slot>
|
|
</input:Button>
|
|
<input:Button>
|
|
<vg-slot name="SymbolSlot"><icons:LGlobe></icons:LGlobe></vg-slot>
|
|
<vg-slot name="DefaultSlot">Some Button</vg-slot>
|
|
</input:Button>
|
|
<input:Button>
|
|
<vg-slot name="SymbolSlot"><icons:LGlobe></icons:LGlobe></vg-slot>
|
|
<vg-slot name="DefaultSlot">Some Button</vg-slot>
|
|
</input:Button>
|
|
<p>Some <view:CodeInline>inlined code</view:CodeInline> in this line!</p>
|
|
</layout:Container>
|
|
</div>
|
|
|
|
<style>
|
|
</style>
|
|
|
|
<script type="application/x-go">
|
|
import (
|
|
"git.d3nexus.de/Dadido3/D3vugu-components/components/layout"
|
|
"git.d3nexus.de/Dadido3/D3vugu-components/components/view"
|
|
"git.d3nexus.de/Dadido3/D3vugu-components/components/input"
|
|
"git.d3nexus.de/Dadido3/D3vugu-components/icons"
|
|
)
|
|
|
|
type PageHome struct {}
|
|
</script>
|