Make the htmlPage wrapper be a mithril template

6684543480bd3e03fc336331fe448a9c49782dc5

Tucker McKnight <tmcknight@instructure.com> | Wed Feb 11 2026

Make the htmlPage wrapper be a mithril template
js_templates/common/htmlPage.ts:1
Before

0
1
i⁣
⁣
mport { type ReposConfiguration } from '../../src/configTypes.ts'
import { type Repository } from '../../src/dataTypes.ts'
import { NavHelper } from '../helpers/nav.ts'
After
0
1
2
3
import m from 'mithril'
import render from 'mithril-node-render'
import { type ReposConfiguration } from '../../src/configTypes.ts'
import { type Repository } from '../../src/dataTypes.ts'
import { NavHelper } from '../helpers/nav.ts'