881e822ef9c0be6de740f46db251c96a202dd3b8 lrnassar Tue Apr 28 11:09:54 2026 -0700 Fix incorrect comment in staticPage.lua; closing div is col-md-10, not col-md-9. Per CR feedback. refs #36894 diff --git docs/staticPage.lua docs/staticPage.lua index e0057e7df9c..3fc86255de3 100644 --- docs/staticPage.lua +++ docs/staticPage.lua @@ -139,31 +139,31 @@ -- Sidebar TOC + body in Bootstrap grid add('
') add('') add('
') -- ucsc change end add(body) - add('
') -- close col-md-9 + add('
') -- close col-md-10 add('') -- close row if #notes > 0 then add('
    ') for _,note in pairs(notes) do add(note) end add('
') end return table.concat(buffer,'\n') .. '\n' end -- The functions that follow render corresponding pandoc elements. -- s is always a string, attr is always a table of attributes, and -- items is always an array of strings (the items in a list). -- Comments indicate the types of other variables.