{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "The `MaterialTemplate` is a simple extension of the basic template which is built on top of [Material Components for the web framework](https://material.io/develop/web/) and uses the `panel.theme.Material` design system. It is a list-like variant where the `main` area acts like a list-like container, unlike the grid-like templates such as `React` and `FastGridTemplate`.\n", "\n", "## Basic Templates\n", "\n", "For a large variety of use cases we do not need complete control over the exact layout of each individual component on the page, as could be achieved with a [custom template](../../user_guide/Templates.ipynb), we just want to achieve a more polished look and feel. For these cases Panel ships with a number of default templates, which are defined by declaring four main content areas on the page, which can be populated as desired:\n", "\n", "* **`header`**: The header area of the HTML page\n", "* **`sidebar`**: A collapsible sidebar\n", "* **`main`**: The main area of the application\n", "* **`modal`**: A modal area which can be opened and closed from Python\n", "\n", "These four areas behave very similarly to other Panel layout components and have list-like semantics. This means we can easily append new components into these areas. Unlike other layout components however, the contents of the areas is fixed once rendered. If you need a dynamic layout you should therefore insert a regular Panel layout component (e.g. a `Column` or `Row`) and modify it in place once added to one of the content areas. \n", "\n", "Templates can allow for us to quickly and easily create web apps for displaying our data. Panel comes with a default Template, and includes multiple Templates that extend the default which add some customization for a better display.\n", "\n", "#### Parameters:\n", "\n", "In addition to the four different areas we can populate the default templates also provide a few additional parameters:\n", "\n", "* **`busy_indicator`** (BooleanIndicator): Visual indicator of application busy state.\n", "* **`collapsed_sidebar`** (str, `default=False`): Whether the sidebar (if present) is initially collapsed.\n", "* **`header_background`** (str): Optional header background color override.\n", "* **`header_color`** (str): Optional header text color override.\n", "* **`logo`** (str): URI of logo to add to the header (if local file, logo is base64 encoded as URI).\n", "* **`site`** (str): Name of the site. Will be shown in the header. Default is '', i.e. not shown.\n", "* **`site_url`** (str): Url of the site and logo. Default is \"/\".\n", "* **`title`** (str): A title to show in the header.\n", "* **`theme`** (Theme): A Theme class (available in `panel.template.theme`)\n", "* **`sidebar_width`** (int): The width of the sidebar in pixels. Default is 370.\n", "\n", "________" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this case we are using the `MaterialTemplate`, built on [Material Components for the web](https://material.io/develop/web/), which is a CSS framework that provides a lot of built in stylings to create a smooth layout. Here is an example of how you can set up a display using this template:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [] }, "outputs": [], "source": [ "import hvplot.pandas\n", "import numpy as np\n", "import panel as pn\n", "import pandas as pd\n", "\n", "xs = np.linspace(0, np.pi)\n", "\n", "freq = pn.widgets.FloatSlider(name=\"Frequency\", start=0, end=10, value=2)\n", "phase = pn.widgets.FloatSlider(name=\"Phase\", start=0, end=np.pi)\n", "\n", "def sine(freq, phase):\n", " return pd.DataFrame(dict(y=np.sin(xs*freq+phase)), index=xs)\n", "\n", "def cosine(freq, phase):\n", " return pd.DataFrame(dict(y=np.cos(xs*freq+phase)), index=xs)\n", "\n", "dfi_sine = hvplot.bind(sine, freq, phase).interactive()\n", "dfi_cosine = hvplot.bind(cosine, freq, phase).interactive()\n", "\n", "plot_opts = dict(responsive=True, min_height=400)\n", "\n", "# Instantiate the template with widgets displayed in the sidebar\n", "template = pn.template.MaterialTemplate(\n", " title='MaterialTemplate',\n", " sidebar=[freq, phase],\n", ")\n", "# Append a layout to the main area, to demonstrate the list-like API\n", "template.main.append(\n", " pn.Row(\n", " pn.Card(dfi_sine.hvplot(**plot_opts).output(), title='Sine'),\n", " pn.Card(dfi_cosine.hvplot(**plot_opts).output(), title='Cosine'),\n", " )\n", ")\n", "\n", "template.servable();" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Each built-in template comes with a *light* (default) and *dark* theme. The theme can be set when instantiating the template with the `theme` parameter, or [globally](../../how_to/styling/themes.md).\n", "\n", "

MaterialTemplate with DefaultTheme

\n", "\n", "
\n", "

MaterialTemplate with DarkTheme

\n", "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ ":::{tip}\n", "Built-in templates don't render necessarily well in a notebook as their styling can badly interact with the notebook built-in styling. You can disable rendering the output of a cell using `;`, as done above. For development purposes, the app can be quickly rendered in another tab by replacing `.servable()` with `.show()`. Alternatively, the [JupyterLab Preview](../../how_to/notebook/jupyterlabpreview.md) can be used to display objects marked with `.servable()` in a new JupyterLab tab, circumventing any potential styling issue.\n", ":::" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 4 }