13 lines
308 B
Go
13 lines
308 B
Go
package data
|
|
|
|
// LayoutData holds templating data for a layout.
|
|
type LayoutData struct {
|
|
// ServerName is the custom name of the server instance.
|
|
ServerName string
|
|
|
|
// ServerVersion is a string representing the server version.
|
|
ServerVersion string
|
|
|
|
// Page contains page/view-specific data.
|
|
Page any
|
|
}
|