/* Yuuki_Libs (c) 2020 Star Inc. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */ (function () { $.get("/api/i", function (data) { name = data; }); var page_list = { "/": "Dashboard", "/groups": "Groups", "/helpers": "Helpers", "/settings": "Settings" }; var nav_list = ""; for (var p_key in page_list) { if (window.location.pathname === p_key) nav_list += "" + page_list[p_key] + ""; else nav_list += "" + page_list[p_key] + ""; } var html_text = "" + "
" + "" + "
"; $("#header").html(html_text); })();