Tucker McKnight <tmcknight@instructure.com> | Sun Jul 12 2026
[WIP] copy the mockup HTML to the repo.ts template This is the start of implementing the new-header-area.html design that's in ui-experiments.
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
)
)
),
m('div', {class: "row mt-2"}, [
m('div', {class: "col"}, [
m('p', {class: "font-monospace text-white mb-2 d-inline-block"}, [
m('a', {class: "btn btn-outline-info badge shadow-none me-2", href: nav.rssFeed()}, [
m('img', {src: `${nav.rootPath()}frontend/img/rss-icon.svg`, style: "width: 11px; margin-right: 5px;"}),
'RSS'
]),
`Latest commit: ${latestCommit.date.toDateString()} `,
m('a', {class: "fw-bold link-info", href: `${nav.commit(latestCommit.hash)}`}, latestCommit.hash.substr(0, 6)),
' ',
latestCommitMessage,
])
])
])
])
])
]),118 119 120 121 122
)
)
),
])
])
]),