27 lines
560 B
Python
27 lines
560 B
Python
# -*- coding: utf-8 -*-
|
|
# This file is part of anisotropy.
|
|
# License: GNU GPL version 3, see the file "LICENSE" for details.
|
|
|
|
from dash import html
|
|
from dash import dcc
|
|
import dash_bootstrap_components as dbc
|
|
|
|
from .styles import *
|
|
import anisotropy
|
|
|
|
|
|
###
|
|
# Layout
|
|
##
|
|
layout = html.Div([
|
|
html.H1(anisotropy.__name__),
|
|
html.Hr(),
|
|
html.P([
|
|
"Author: {}".format(anisotropy.__author__),
|
|
html.Br(),
|
|
"License: {}".format(anisotropy.__license__),
|
|
html.Br(),
|
|
"Version: {}".format(anisotropy.__version__)
|
|
])
|
|
])
|