├── .gitignore ├── Makefile ├── README.md ├── README_CN.md ├── adminlte ├── .gitignore ├── Makefile ├── adminlte.go ├── components │ ├── chart_legend │ │ ├── chart_legend.go │ │ ├── chart_legend.tmpl │ │ └── chart_legend_tmpl.go │ ├── description │ │ ├── description.go │ │ ├── description.tmpl │ │ └── description_tmpl.go │ ├── infobox │ │ ├── infobox.go │ │ ├── infobox.tmpl │ │ └── infobox_tmpl.go │ ├── productlist │ │ ├── productlist.go │ │ ├── productlist.tmpl │ │ └── productlist_tmpl.go │ ├── progress_group │ │ ├── progress_group.go │ │ ├── progress_group.tmpl │ │ └── progress_group_tmpl.go │ └── smallbox │ │ ├── smallbox.go │ │ ├── smallbox.tmpl │ │ └── smallbox_tmpl.go ├── resource │ ├── adminlte │ │ └── adminlte.css │ ├── assets.go │ ├── assets │ │ └── dist │ │ │ ├── css │ │ │ ├── all.min.165468e1df.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ └── fonts │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ │ │ ├── fonts │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ │ ├── img │ │ │ ├── avatar04.png │ │ │ ├── clear.png │ │ │ ├── loading.gif │ │ │ ├── plugin_default.png │ │ │ ├── plugin_more.png │ │ │ ├── sprite-skin-nice.png │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── js │ │ │ ├── all.min.506636f003.js │ │ │ ├── all_2.min.1cd3070239.js │ │ │ ├── datatable.min.43c12443cf.js │ │ │ ├── form.min.4022a41f70.js │ │ │ ├── html5shiv.min.js │ │ │ ├── respond.min.js │ │ │ ├── tree.min.b68a8b6689.js │ │ │ └── treeview.min.3095cd8c12.js │ ├── assets_list.go │ └── assets_path.go ├── separation │ ├── adminlte.go │ ├── public.zip │ └── public │ │ ├── assets │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── all.min.165468e1df.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ └── fonts │ │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ │ │ ├── fonts │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── img │ │ │ │ ├── avatar04.png │ │ │ │ ├── clear.png │ │ │ │ ├── loading.gif │ │ │ │ ├── plugin_default.png │ │ │ │ ├── plugin_more.png │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── js │ │ │ │ ├── all.min.506636f003.js │ │ │ │ ├── all_2.min.1cd3070239.js │ │ │ │ ├── datatable.min.43c12443cf.js │ │ │ │ ├── form.min.4022a41f70.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── respond.min.js │ │ │ │ ├── tree.min.b68a8b6689.js │ │ │ │ └── treeview.min.3095cd8c12.js │ │ └── src │ │ │ ├── css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── combine │ │ │ │ ├── 0_animate.min.css │ │ │ │ ├── 0_bootstrap.min.css │ │ │ │ ├── 1_font-awesome.min.css │ │ │ │ ├── 2_ionicons.min.css │ │ │ │ ├── 3_dataTables.bootstrap.min.css │ │ │ │ ├── 4__all.css │ │ │ │ ├── 5_futurico.css │ │ │ │ ├── 6_polaris.css │ │ │ │ ├── 7_toastr.min.css │ │ │ │ ├── 8_nprogress.css │ │ │ │ ├── 9_select2.min.css │ │ │ │ ├── a_sweetalert.css │ │ │ │ ├── b_bootstrap-editable.css │ │ │ │ ├── b_fileinput.min.css │ │ │ │ ├── c_bootstrap-colorpicker.min.css │ │ │ │ ├── d_nestable.css │ │ │ │ ├── e_bootstrap-datetimepicker.min.css │ │ │ │ ├── e_bootstrap-switch.min.css │ │ │ │ ├── f_bootstrap-duallistbox.min.css │ │ │ │ ├── g_all.css │ │ │ │ ├── g_fontawesome-iconpicker.min.css │ │ │ │ ├── h_AdminLTE.min.css │ │ │ │ ├── h_ion.rangeSlider.css │ │ │ │ ├── h_ion.rangeSlider.skinNice.css │ │ │ │ ├── h_jquery-ui.min.css │ │ │ │ ├── j_font.css │ │ │ │ └── k__all-skins.min.css │ │ │ └── fonts │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ │ │ ├── fonts │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ │ ├── img │ │ │ ├── avatar04.png │ │ │ ├── clear.png │ │ │ ├── loading.gif │ │ │ ├── plugin_default.png │ │ │ ├── plugin_more.png │ │ │ ├── sprite-skin-nice.png │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── js │ │ │ ├── all │ │ │ ├── 0_jquery_2.1.4.min.js │ │ │ ├── 1_adminlte.min.js │ │ │ ├── 2_icheck.min.js │ │ │ ├── 3_bootstrap-select.min.js │ │ │ ├── 4_jquery.ui.min.js │ │ │ └── 5_bootstrap.min.js │ │ │ ├── all_2 │ │ │ ├── 1_jquery.slimscroll.min.js │ │ │ ├── 2_fastclick.js │ │ │ ├── 3_nprogress.js │ │ │ ├── 4_toastr.min.js │ │ │ ├── 5_jquery.pjax.js │ │ │ ├── 6_sweetalert.min.js │ │ │ └── 7_info.js │ │ │ ├── components │ │ │ ├── datatable │ │ │ │ ├── 0_jquery.dataTables.min.js │ │ │ │ ├── 1_dataTables.bootstrap.min.js │ │ │ │ └── 2_bootstrap-editable.min.js │ │ │ ├── form │ │ │ │ ├── 0_select2.full.min.js │ │ │ │ ├── 1_fileinput.min.js │ │ │ │ ├── 2_jquery.bootstrap-duallistbox.min.js │ │ │ │ ├── 3_bootstrap-switch.min.js │ │ │ │ ├── 4_bootstrap-colorpicker.min.js │ │ │ │ ├── 5_jquery.inputmask.bundle.min.js │ │ │ │ ├── 6_bootstrap-number-input.js │ │ │ │ ├── 6_ion.rangeSlider.min.js │ │ │ │ ├── 7_wangEditor.min.js │ │ │ │ ├── 8_fileinput.min.js │ │ │ │ ├── 9_fontawesome-iconpicker.min.js │ │ │ │ ├── a_moment-with-locales.min.js │ │ │ │ ├── b_bootstrap-datetimepicker.min.js │ │ │ │ ├── e_ace.js │ │ │ │ ├── f_ext-language_tools.js │ │ │ │ ├── f_mode-html.js │ │ │ │ ├── f_theme-monokai.js │ │ │ │ └── f_worker-html.js │ │ │ ├── tree │ │ │ │ └── jquery.nestable.js │ │ │ └── treeview │ │ │ │ └── bootstrap-treeview.min.js │ │ │ ├── html5shiv.min.js │ │ │ └── respond.min.js │ │ └── pages │ │ ├── 403.tmpl │ │ ├── 404.tmpl │ │ ├── 500.tmpl │ │ ├── admin_panel.tmpl │ │ ├── components │ │ ├── alert.tmpl │ │ ├── box.tmpl │ │ ├── button.tmpl │ │ ├── col.tmpl │ │ ├── form.tmpl │ │ ├── form │ │ │ ├── array.tmpl │ │ │ ├── checkbox.tmpl │ │ │ ├── checkbox_single.tmpl │ │ │ ├── checkbox_stacked.tmpl │ │ │ ├── code.tmpl │ │ │ ├── color.tmpl │ │ │ ├── currency.tmpl │ │ │ ├── custom.tmpl │ │ │ ├── datetime.tmpl │ │ │ ├── datetime_range.tmpl │ │ │ ├── default.tmpl │ │ │ ├── email.tmpl │ │ │ ├── file.tmpl │ │ │ ├── help_block.tmpl │ │ │ ├── iconpicker.tmpl │ │ │ ├── ip.tmpl │ │ │ ├── multi_file.tmpl │ │ │ ├── number.tmpl │ │ │ ├── number_range.tmpl │ │ │ ├── password.tmpl │ │ │ ├── radio.tmpl │ │ │ ├── rate.tmpl │ │ │ ├── richtext.tmpl │ │ │ ├── select.tmpl │ │ │ ├── selectbox.tmpl │ │ │ ├── singleselect.tmpl │ │ │ ├── slider.tmpl │ │ │ ├── switch.tmpl │ │ │ ├── table.tmpl │ │ │ ├── text.tmpl │ │ │ ├── textarea.tmpl │ │ │ └── url.tmpl │ │ ├── form_components.tmpl │ │ ├── form_components_layout.tmpl │ │ ├── form_layout_default.tmpl │ │ ├── form_layout_filter.tmpl │ │ ├── form_layout_flow.tmpl │ │ ├── form_layout_tab.tmpl │ │ ├── form_layout_two_col.tmpl │ │ ├── image.tmpl │ │ ├── label.tmpl │ │ ├── link.tmpl │ │ ├── paginator.tmpl │ │ ├── popup.tmpl │ │ ├── row.tmpl │ │ ├── table.tmpl │ │ ├── table │ │ │ └── box-header.tmpl │ │ ├── tabs.tmpl │ │ ├── tree-header.tmpl │ │ ├── tree.tmpl │ │ └── treeview.tmpl │ │ ├── content.tmpl │ │ ├── control_panel.tmpl │ │ ├── footer.tmpl │ │ ├── head.tmpl │ │ ├── header.tmpl │ │ ├── js.tmpl │ │ ├── layout.tmpl │ │ ├── menu.tmpl │ │ └── sidebar.tmpl └── template.go ├── common ├── assets │ ├── css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── combine │ │ │ ├── 0_animate.min.css │ │ │ ├── 0_bootstrap.min.css │ │ │ ├── 1_font-awesome.min.css │ │ │ ├── 2_ionicons.min.css │ │ │ ├── 3_dataTables.bootstrap.min.css │ │ │ ├── 4__all.css │ │ │ ├── 5_futurico.css │ │ │ ├── 6_polaris.css │ │ │ ├── 7_toastr.min.css │ │ │ ├── 8_nprogress.css │ │ │ ├── 9_select2.min.css │ │ │ ├── a_sweetalert.css │ │ │ ├── b_bootstrap-editable.css │ │ │ ├── b_fileinput.min.css │ │ │ ├── c_bootstrap-colorpicker.min.css │ │ │ ├── d_nestable.css │ │ │ ├── e_bootstrap-datetimepicker.min.css │ │ │ ├── e_bootstrap-switch.min.css │ │ │ ├── f_bootstrap-duallistbox.min.css │ │ │ ├── g_fontawesome-iconpicker.min.css │ │ │ ├── h_AdminLTE.min.css │ │ │ ├── h_ion.rangeSlider.css │ │ │ ├── h_ion.rangeSlider.skinNice.css │ │ │ ├── h_jquery-ui.min.css │ │ │ ├── j_font.css │ │ │ └── k__all-skins.min.css │ │ └── fonts │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ ├── fonts │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── img │ │ ├── avatar04.png │ │ ├── clear.png │ │ ├── loading.gif │ │ ├── plugin_default.png │ │ ├── plugin_more.png │ │ ├── sprite-skin-nice.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ └── js │ │ ├── all │ │ ├── 0_jquery_2.1.4.min.js │ │ ├── 1_adminlte.min.js │ │ ├── 2_icheck.min.js │ │ ├── 3_bootstrap-select.min.js │ │ ├── 4_jquery.ui.min.js │ │ └── 5_bootstrap.min.js │ │ ├── all_2 │ │ ├── 1_jquery.slimscroll.min.js │ │ ├── 2_fastclick.js │ │ ├── 3_nprogress.js │ │ ├── 4_toastr.min.js │ │ ├── 5_jquery.pjax.js │ │ ├── 6_sweetalert.min.js │ │ └── 7_info.js │ │ ├── components │ │ ├── datatable │ │ │ ├── 0_jquery.dataTables.min.js │ │ │ ├── 1_dataTables.bootstrap.min.js │ │ │ └── 2_bootstrap-editable.min.js │ │ ├── form │ │ │ ├── 0_select2.full.min.js │ │ │ ├── 1_fileinput.min.js │ │ │ ├── 2_jquery.bootstrap-duallistbox.min.js │ │ │ ├── 3_bootstrap-switch.min.js │ │ │ ├── 4_bootstrap-colorpicker.min.js │ │ │ ├── 5_jquery.inputmask.bundle.min.js │ │ │ ├── 6_bootstrap-number-input.js │ │ │ ├── 6_ion.rangeSlider.min.js │ │ │ ├── 7_wangEditor.min.js │ │ │ ├── 8_fileinput.min.js │ │ │ ├── 9_fontawesome-iconpicker.min.js │ │ │ ├── a_moment-with-locales.min.js │ │ │ ├── b_bootstrap-datetimepicker.min.js │ │ │ ├── e_ace.js │ │ │ ├── f_ext-language_tools.js │ │ │ ├── f_mode-html.js │ │ │ ├── f_theme-monokai.js │ │ │ └── f_worker-html.js │ │ ├── tree │ │ │ └── jquery.nestable.js │ │ └── treeview │ │ │ └── bootstrap-treeview.min.js │ │ ├── html5shiv.min.js │ │ └── respond.min.js ├── common.go └── pages │ ├── 403.tmpl │ ├── 404.tmpl │ ├── 500.tmpl │ ├── admin_panel.tmpl │ ├── components │ ├── alert.tmpl │ ├── box.tmpl │ ├── button.tmpl │ ├── col.tmpl │ ├── form.tmpl │ ├── form │ │ ├── array.tmpl │ │ ├── checkbox.tmpl │ │ ├── checkbox_single.tmpl │ │ ├── checkbox_stacked.tmpl │ │ ├── code.tmpl │ │ ├── color.tmpl │ │ ├── currency.tmpl │ │ ├── custom.tmpl │ │ ├── datetime.tmpl │ │ ├── datetime_range.tmpl │ │ ├── default.tmpl │ │ ├── email.tmpl │ │ ├── file.tmpl │ │ ├── help_block.tmpl │ │ ├── iconpicker.tmpl │ │ ├── ip.tmpl │ │ ├── multi_file.tmpl │ │ ├── number.tmpl │ │ ├── number_range.tmpl │ │ ├── password.tmpl │ │ ├── radio.tmpl │ │ ├── rate.tmpl │ │ ├── richtext.tmpl │ │ ├── select.tmpl │ │ ├── selectbox.tmpl │ │ ├── singleselect.tmpl │ │ ├── slider.tmpl │ │ ├── switch.tmpl │ │ ├── table.tmpl │ │ ├── text.tmpl │ │ ├── textarea.tmpl │ │ └── url.tmpl │ ├── form_components.tmpl │ ├── form_components_layout.tmpl │ ├── form_layout_default.tmpl │ ├── form_layout_filter.tmpl │ ├── form_layout_flow.tmpl │ ├── form_layout_tab.tmpl │ ├── form_layout_two_col.tmpl │ ├── image.tmpl │ ├── label.tmpl │ ├── link.tmpl │ ├── paginator.tmpl │ ├── popup.tmpl │ ├── row.tmpl │ ├── table.tmpl │ ├── table │ │ └── box-header.tmpl │ ├── tabs.tmpl │ ├── tree-header.tmpl │ ├── tree.tmpl │ └── treeview.tmpl │ ├── content.tmpl │ ├── control_panel.tmpl │ ├── footer.tmpl │ ├── head.tmpl │ ├── header.tmpl │ ├── js.tmpl │ ├── layout.tmpl │ ├── menu.tmpl │ └── sidebar.tmpl ├── go.mod ├── go.sum └── sword ├── .gitignore ├── Makefile ├── components ├── card │ ├── card.go │ ├── card.tmpl │ └── card_tmpl.go ├── chart_legend │ ├── chart_legend.go │ ├── chart_legend.tmpl │ └── chart_legend_tmpl.go ├── description │ ├── description.go │ ├── description.tmpl │ └── description_tmpl.go └── progress_group │ ├── progress_group.go │ ├── progress_group.tmpl │ └── progress_group_tmpl.go ├── go_plugin ├── Makefile └── main.go ├── resource ├── assets.go ├── assets │ └── dist │ │ ├── css │ │ ├── all.min.dd4b069ab5.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ └── fonts │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ │ ├── fonts │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── img │ │ ├── avatar04.png │ │ ├── clear.png │ │ ├── loading.gif │ │ ├── plugin_default.png │ │ ├── plugin_more.png │ │ ├── sprite-skin-nice.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ └── js │ │ ├── all.min.506636f003.js │ │ ├── all_2.min.1cd3070239.js │ │ ├── datatable.min.43c12443cf.js │ │ ├── form.min.4022a41f70.js │ │ ├── html5shiv.min.js │ │ ├── respond.min.js │ │ ├── tree.min.b68a8b6689.js │ │ └── treeview.min.3095cd8c12.js ├── assets_list.go ├── assets_path.go └── sword │ ├── blue.png │ ├── blue@2x.png │ ├── pages │ ├── 403.tmpl │ ├── 404.tmpl │ ├── 500.tmpl │ ├── admin_panel.tmpl │ ├── components │ │ ├── paginator.tmpl │ │ ├── table │ │ │ └── box-header.tmpl │ │ └── tree-header.tmpl │ ├── content.tmpl │ ├── header.tmpl │ ├── layout.tmpl │ └── sidebar.tmpl │ └── sword.css ├── separation ├── public.zip ├── public │ ├── assets │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── all.min.dd4b069ab5.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ └── fonts │ │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ │ │ ├── fonts │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── img │ │ │ │ ├── avatar04.png │ │ │ │ ├── clear.png │ │ │ │ ├── loading.gif │ │ │ │ ├── plugin_default.png │ │ │ │ ├── plugin_more.png │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── js │ │ │ │ ├── all.min.506636f003.js │ │ │ │ ├── all_2.min.1cd3070239.js │ │ │ │ ├── datatable.min.43c12443cf.js │ │ │ │ ├── form.min.4022a41f70.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── respond.min.js │ │ │ │ ├── tree.min.b68a8b6689.js │ │ │ │ └── treeview.min.3095cd8c12.js │ │ └── src │ │ │ ├── css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── combine │ │ │ │ ├── 0_animate.min.css │ │ │ │ ├── 0_bootstrap.min.css │ │ │ │ ├── 1_font-awesome.min.css │ │ │ │ ├── 2_ionicons.min.css │ │ │ │ ├── 3_dataTables.bootstrap.min.css │ │ │ │ ├── 4__all.css │ │ │ │ ├── 5_futurico.css │ │ │ │ ├── 6_polaris.css │ │ │ │ ├── 7_toastr.min.css │ │ │ │ ├── 8_nprogress.css │ │ │ │ ├── 9_select2.min.css │ │ │ │ ├── a_sweetalert.css │ │ │ │ ├── b_bootstrap-editable.css │ │ │ │ ├── b_fileinput.min.css │ │ │ │ ├── c_bootstrap-colorpicker.min.css │ │ │ │ ├── d_nestable.css │ │ │ │ ├── e_bootstrap-datetimepicker.min.css │ │ │ │ ├── e_bootstrap-switch.min.css │ │ │ │ ├── f_bootstrap-duallistbox.min.css │ │ │ │ ├── g_fontawesome-iconpicker.min.css │ │ │ │ ├── h_AdminLTE.min.css │ │ │ │ ├── h_ion.rangeSlider.css │ │ │ │ ├── h_ion.rangeSlider.skinNice.css │ │ │ │ ├── h_jquery-ui.min.css │ │ │ │ ├── i_sword.css │ │ │ │ ├── j_font.css │ │ │ │ └── k__all-skins.min.css │ │ │ └── fonts │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf │ │ │ │ └── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf │ │ │ ├── fonts │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf │ │ │ ├── 6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ │ ├── img │ │ │ ├── avatar04.png │ │ │ ├── clear.png │ │ │ ├── loading.gif │ │ │ ├── plugin_default.png │ │ │ ├── plugin_more.png │ │ │ ├── sprite-skin-nice.png │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── js │ │ │ ├── all │ │ │ ├── 0_jquery_2.1.4.min.js │ │ │ ├── 1_adminlte.min.js │ │ │ ├── 2_icheck.min.js │ │ │ ├── 3_bootstrap-select.min.js │ │ │ ├── 4_jquery.ui.min.js │ │ │ └── 5_bootstrap.min.js │ │ │ ├── all_2 │ │ │ ├── 1_jquery.slimscroll.min.js │ │ │ ├── 2_fastclick.js │ │ │ ├── 3_nprogress.js │ │ │ ├── 4_toastr.min.js │ │ │ ├── 5_jquery.pjax.js │ │ │ ├── 6_sweetalert.min.js │ │ │ └── 7_info.js │ │ │ ├── components │ │ │ ├── datatable │ │ │ │ ├── 0_jquery.dataTables.min.js │ │ │ │ ├── 1_dataTables.bootstrap.min.js │ │ │ │ └── 2_bootstrap-editable.min.js │ │ │ ├── form │ │ │ │ ├── 0_select2.full.min.js │ │ │ │ ├── 1_fileinput.min.js │ │ │ │ ├── 2_jquery.bootstrap-duallistbox.min.js │ │ │ │ ├── 3_bootstrap-switch.min.js │ │ │ │ ├── 4_bootstrap-colorpicker.min.js │ │ │ │ ├── 5_jquery.inputmask.bundle.min.js │ │ │ │ ├── 6_bootstrap-number-input.js │ │ │ │ ├── 6_ion.rangeSlider.min.js │ │ │ │ ├── 7_wangEditor.min.js │ │ │ │ ├── 8_fileinput.min.js │ │ │ │ ├── 9_fontawesome-iconpicker.min.js │ │ │ │ ├── a_moment-with-locales.min.js │ │ │ │ ├── b_bootstrap-datetimepicker.min.js │ │ │ │ ├── e_ace.js │ │ │ │ ├── f_ext-language_tools.js │ │ │ │ ├── f_mode-html.js │ │ │ │ ├── f_theme-monokai.js │ │ │ │ └── f_worker-html.js │ │ │ ├── tree │ │ │ │ └── jquery.nestable.js │ │ │ └── treeview │ │ │ │ └── bootstrap-treeview.min.js │ │ │ ├── html5shiv.min.js │ │ │ └── respond.min.js │ └── pages │ │ ├── 403.tmpl │ │ ├── 404.tmpl │ │ ├── 500.tmpl │ │ ├── admin_panel.tmpl │ │ ├── components │ │ ├── alert.tmpl │ │ ├── box.tmpl │ │ ├── button.tmpl │ │ ├── col.tmpl │ │ ├── form.tmpl │ │ ├── form │ │ │ ├── array.tmpl │ │ │ ├── checkbox.tmpl │ │ │ ├── checkbox_single.tmpl │ │ │ ├── checkbox_stacked.tmpl │ │ │ ├── code.tmpl │ │ │ ├── color.tmpl │ │ │ ├── currency.tmpl │ │ │ ├── custom.tmpl │ │ │ ├── datetime.tmpl │ │ │ ├── datetime_range.tmpl │ │ │ ├── default.tmpl │ │ │ ├── email.tmpl │ │ │ ├── file.tmpl │ │ │ ├── help_block.tmpl │ │ │ ├── iconpicker.tmpl │ │ │ ├── ip.tmpl │ │ │ ├── multi_file.tmpl │ │ │ ├── number.tmpl │ │ │ ├── number_range.tmpl │ │ │ ├── password.tmpl │ │ │ ├── radio.tmpl │ │ │ ├── rate.tmpl │ │ │ ├── richtext.tmpl │ │ │ ├── select.tmpl │ │ │ ├── selectbox.tmpl │ │ │ ├── singleselect.tmpl │ │ │ ├── slider.tmpl │ │ │ ├── switch.tmpl │ │ │ ├── table.tmpl │ │ │ ├── text.tmpl │ │ │ ├── textarea.tmpl │ │ │ └── url.tmpl │ │ ├── form_components.tmpl │ │ ├── form_components_layout.tmpl │ │ ├── form_layout_default.tmpl │ │ ├── form_layout_filter.tmpl │ │ ├── form_layout_flow.tmpl │ │ ├── form_layout_tab.tmpl │ │ ├── form_layout_two_col.tmpl │ │ ├── image.tmpl │ │ ├── label.tmpl │ │ ├── link.tmpl │ │ ├── paginator.tmpl │ │ ├── popup.tmpl │ │ ├── row.tmpl │ │ ├── table.tmpl │ │ ├── table │ │ │ └── box-header.tmpl │ │ ├── tabs.tmpl │ │ ├── tree-header.tmpl │ │ ├── tree.tmpl │ │ └── treeview.tmpl │ │ ├── content.tmpl │ │ ├── control_panel.tmpl │ │ ├── footer.tmpl │ │ ├── head.tmpl │ │ ├── header.tmpl │ │ ├── js.tmpl │ │ ├── layout.tmpl │ │ ├── menu.tmpl │ │ └── sidebar.tmpl └── sword.go ├── sword.go └── template.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C ./adminlte 3 | make -C ./sword 4 | make fmt 5 | 6 | fmt: 7 | GO111MODULE=off go fmt ./... 8 | GO111MODULE=off goimports -l -w . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GoAdmin Official Themes 2 | 3 | - [adminlte](https://github.com/GoAdminGroup/themes/tree/master/adminlte) 4 | - [sword](https://github.com/GoAdminGroup/themes/tree/master/sword) 5 | 6 | [中文介绍](./README_CN.md) 7 | 8 | ## How to use 9 | 10 | - Import the theme 11 | - Set in the global configuration of GoAdmin 12 | 13 | ```go 14 | 15 | package main 16 | 17 | import ( 18 | ... 19 | _ "github.com/GoAdminGroup/themes/adminlte" 20 | ... 21 | ) 22 | 23 | func main() { 24 | 25 | ... 26 | 27 | cfg := config.Config{ 28 | ... 29 | 30 | Theme: "adminlte", 31 | 32 | ... 33 | } 34 | 35 | ... 36 | 37 | } 38 | 39 | ``` 40 | 41 | ## How to modify and make it work 42 | 43 | Use the Makefile under each theme directory. -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- 1 | # GoAdmin 官方主题 2 | 3 | - [adminlte](https://github.com/GoAdminGroup/themes/tree/master/adminlte) 4 | - [sword](https://github.com/GoAdminGroup/themes/tree/master/sword) 5 | 6 | ## 如何使用 7 | 8 | - 导入主题 9 | - 在全局配置中设置 10 | 11 | ```go 12 | 13 | package main 14 | 15 | import ( 16 | ... 17 | _ "github.com/GoAdminGroup/themes/adminlte" 18 | ... 19 | ) 20 | 21 | func main() { 22 | 23 | ... 24 | 25 | cfg := config.Config{ 26 | ... 27 | 28 | Theme: "adminlte", 29 | 30 | ... 31 | } 32 | 33 | ... 34 | 35 | } 36 | 37 | ``` 38 | 39 | ## 如何修改,自定义 40 | 41 | 使用每个主题下面的 Makefile 命令 -------------------------------------------------------------------------------- /adminlte/.gitignore: -------------------------------------------------------------------------------- 1 | /resource/assets/vendor -------------------------------------------------------------------------------- /adminlte/components/chart_legend/chart_legend.go: -------------------------------------------------------------------------------- 1 | package chart_legend 2 | 3 | import ( 4 | "html/template" 5 | 6 | adminTemplate "github.com/GoAdminGroup/go-admin/template" 7 | ) 8 | 9 | type ChartLegend struct { 10 | *adminTemplate.BaseComponent 11 | 12 | Data []map[string]string 13 | } 14 | 15 | func New() ChartLegend { 16 | return ChartLegend{ 17 | BaseComponent: &adminTemplate.BaseComponent{ 18 | Name: "chart-legend", 19 | HTMLData: List["chart-legend"], 20 | }, 21 | } 22 | } 23 | 24 | func (c ChartLegend) SetData(value []map[string]string) ChartLegend { 25 | c.Data = value 26 | return c 27 | } 28 | 29 | func (c ChartLegend) GetContent() template.HTML { return c.GetContentWithData(c) } 30 | -------------------------------------------------------------------------------- /adminlte/components/chart_legend/chart_legend.tmpl: -------------------------------------------------------------------------------- 1 | {{define "chart-legend"}} 2 | 7 | {{end}} -------------------------------------------------------------------------------- /adminlte/components/chart_legend/chart_legend_tmpl.go: -------------------------------------------------------------------------------- 1 | package chart_legend 2 | 3 | var List = map[string]string{ 4 | "chart-legend": `{{define "chart-legend"}} 5 | 10 | {{end}}`, 11 | } 12 | -------------------------------------------------------------------------------- /adminlte/components/description/description.tmpl: -------------------------------------------------------------------------------- 1 | {{define "description"}} 2 |
3 | {{langHtml .Percent}}% 4 |
{{langHtml .Number}}
5 | {{langHtml .Title}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /adminlte/components/description/description_tmpl.go: -------------------------------------------------------------------------------- 1 | package description 2 | 3 | var List = map[string]string{ 4 | "description": `{{define "description"}} 5 |
6 | {{langHtml .Percent}}% 7 |
{{langHtml .Number}}
8 | {{langHtml .Title}} 9 |
10 | {{end}}`, 11 | } 12 | -------------------------------------------------------------------------------- /adminlte/components/infobox/infobox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "infobox"}} 2 |
3 | {{if .IsHexColor}} 4 | 5 | {{else}} 6 | 7 | {{end}} 8 | {{if .IsSvg}} 9 | {{.Icon}} 10 | {{else}} 11 | 12 | {{end}} 13 | 14 |
15 | {{langHtml .Text}} 16 | {{langHtml .Number}} 17 | {{langHtml .Content}} 18 |
19 |
20 | {{end}} -------------------------------------------------------------------------------- /adminlte/components/infobox/infobox_tmpl.go: -------------------------------------------------------------------------------- 1 | package infobox 2 | 3 | var List = map[string]string{ 4 | "infobox": `{{define "infobox"}} 5 |
6 | {{if .IsHexColor}} 7 | 8 | {{else}} 9 | 10 | {{end}} 11 | {{if .IsSvg}} 12 | {{.Icon}} 13 | {{else}} 14 | 15 | {{end}} 16 | 17 |
18 | {{langHtml .Text}} 19 | {{langHtml .Number}} 20 | {{langHtml .Content}} 21 |
22 |
23 | {{end}}`, 24 | } 25 | -------------------------------------------------------------------------------- /adminlte/components/productlist/productlist.go: -------------------------------------------------------------------------------- 1 | package productlist 2 | 3 | import ( 4 | "html/template" 5 | 6 | adminTemplate "github.com/GoAdminGroup/go-admin/template" 7 | ) 8 | 9 | type ProductList struct { 10 | *adminTemplate.BaseComponent 11 | 12 | Data []map[string]string 13 | } 14 | 15 | func New() ProductList { 16 | return ProductList{ 17 | BaseComponent: &adminTemplate.BaseComponent{ 18 | Name: "productlist", 19 | HTMLData: List["productlist"], 20 | }, 21 | } 22 | } 23 | 24 | func (p ProductList) SetData(value []map[string]string) ProductList { 25 | p.Data = value 26 | return p 27 | } 28 | 29 | func (p ProductList) GetContent() template.HTML { return p.GetContentWithData(p) } 30 | -------------------------------------------------------------------------------- /adminlte/components/productlist/productlist.tmpl: -------------------------------------------------------------------------------- 1 | {{define "productlist"}} 2 | 21 | {{end}} -------------------------------------------------------------------------------- /adminlte/components/productlist/productlist_tmpl.go: -------------------------------------------------------------------------------- 1 | package productlist 2 | 3 | var List = map[string]string{ 4 | "productlist": `{{define "productlist"}} 5 | 24 | {{end}}`, 25 | } 26 | -------------------------------------------------------------------------------- /adminlte/components/progress_group/progress_group.tmpl: -------------------------------------------------------------------------------- 1 | {{define "progress-group"}} 2 |
3 | {{langHtml .Title}} 4 | {{.Molecular}}/{{.Denominator}} 5 | 6 |
7 | {{if .IsHexColor}} 8 |
9 | {{else}} 10 |
11 | {{end}} 12 |
13 |
14 | {{end}} -------------------------------------------------------------------------------- /adminlte/components/progress_group/progress_group_tmpl.go: -------------------------------------------------------------------------------- 1 | package progress_group 2 | 3 | var List = map[string]string{ 4 | "progress-group": `{{define "progress-group"}} 5 |
6 | {{langHtml .Title}} 7 | {{.Molecular}}/{{.Denominator}} 8 | 9 |
10 | {{if .IsHexColor}} 11 |
12 | {{else}} 13 |
14 | {{end}} 15 |
16 |
17 | {{end}}`, 18 | } 19 | -------------------------------------------------------------------------------- /adminlte/components/smallbox/smallbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "smallbox"}} 2 |
3 |
4 |

{{langHtml .Value}}

5 |

{{langHtml .Title}}

6 |
7 |
8 | 9 |
10 | 11 | {{lang "more"}} 12 | 13 | 14 |
15 | {{end}} -------------------------------------------------------------------------------- /adminlte/components/smallbox/smallbox_tmpl.go: -------------------------------------------------------------------------------- 1 | package smallbox 2 | 3 | var List = map[string]string{ 4 | "smallbox": `{{define "smallbox"}} 5 |
6 |
7 |

{{langHtml .Value}}

8 |

{{langHtml .Title}}

9 |
10 |
11 | 12 |
13 | 14 | {{lang "more"}} 15 | 16 | 17 |
18 | {{end}}`, 19 | } 20 | -------------------------------------------------------------------------------- /adminlte/resource/assets.go: -------------------------------------------------------------------------------- 1 | package resource 2 | 3 | import "embed" 4 | 5 | //go:embed assets/dist/* 6 | var AssetFS embed.FS 7 | -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/css/blue.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/css/blue@2x.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/ionicons.ttf -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/fonts/ionicons.woff -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/clear.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/loading.gif -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/plugin_default.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/plugin_more.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /adminlte/resource/assets/dist/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/resource/assets/dist/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /adminlte/resource/assets_path.go: -------------------------------------------------------------------------------- 1 | package resource 2 | 3 | var AssetPaths = map[string]string{ 4 | "all.min.css": "/dist/css/all.min.165468e1df.css", 5 | "all.min.js": "/dist/js/all.min.506636f003.js", 6 | "all_2.min.js": "/dist/js/all_2.min.1cd3070239.js", 7 | "datatable.min.js": "/dist/js/datatable.min.43c12443cf.js", 8 | "form.min.js": "/dist/js/form.min.4022a41f70.js", 9 | "html5shiv.min.js": "/dist/js/html5shiv.min.js", 10 | "respond.min.js": "/dist/js/respond.min.js", 11 | "tree.min.js": "/dist/js/tree.min.b68a8b6689.js", 12 | "treeview.min.js": "/dist/js/treeview.min.3095cd8c12.js", 13 | } 14 | -------------------------------------------------------------------------------- /adminlte/separation/public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public.zip -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/css/blue.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/css/blue@2x.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/ionicons.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/fonts/ionicons.woff -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/clear.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/loading.gif -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/plugin_default.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/plugin_more.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/dist/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/dist/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/css/blue.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/css/blue@2x.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/ionicons.ttf -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/fonts/ionicons.woff -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/avatar04.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/clear.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/loading.gif -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/plugin_default.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/plugin_more.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/assets/src/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/adminlte/separation/public/assets/src/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /adminlte/separation/public/pages/403.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
403
3 |
Sorry, you don't have access to this page.
4 |
5 | 6 | -------------------------------------------------------------------------------- /adminlte/separation/public/pages/404.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
404
3 |
Sorry, the page you visited does not exist.
4 |
5 | 6 | -------------------------------------------------------------------------------- /adminlte/separation/public/pages/500.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
500
3 |
Sorry, the server is reporting an error.
4 |
5 | 6 | -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/alert.tmpl: -------------------------------------------------------------------------------- 1 | {{define "alert"}} 2 |
3 | 4 |

{{langHtml .Title}}

5 | {{langHtml .Content}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/box.tmpl: -------------------------------------------------------------------------------- 1 | {{define "box"}} 2 |
3 | {{if ne .Header ""}} 4 | {{if eq .HeadColor ""}} 5 |
6 | {{else}} 7 |
8 | {{end}} 9 | {{langHtml .Header}} 10 |
11 | {{end}} 12 | {{if ne .SecondHeader ""}} 13 | {{if eq .SecondHeadColor ""}} 14 |
15 | {{else}} 16 |
17 | {{end}} 18 | {{langHtml .SecondHeader}} 19 |
20 | {{end}} 21 |
22 | {{langHtml .Body}} 23 |
24 | {{if ne .Footer ""}} 25 | 28 | {{end}} 29 |
30 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/button.tmpl: -------------------------------------------------------------------------------- 1 | {{define "button"}} 2 |
3 | {{if eq .Href ""}} 4 | 7 | {{else}} 8 | 9 | {{langHtml .Content}} 10 | 11 | {{end}} 12 |
13 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/col.tmpl: -------------------------------------------------------------------------------- 1 | {{define "col"}} 2 |
{{langHtml .Content}}
3 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/checkbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox"}} 2 | {{range $key, $v := .Options }} 3 | 4 | 10 | 11 | {{end}} 12 | 15 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/checkbox_single.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox_single"}} 2 | 3 | 12 | 13 | 25 | {{end}} 26 | 27 | -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/checkbox_stacked.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox_stacked"}} 2 |
3 | {{range $key, $v := .Options }} 4 |
5 | 11 |
12 | {{end}} 13 |
14 | 17 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/code.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_code"}} 2 |
3 | 4 | 5 | 19 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/color.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_color"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 9 |
10 | 13 | {{else}} 14 |
15 |
{{.Value}}
16 |
17 | 18 | {{end}} 19 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/currency.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_currency"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | $ 6 | {{end}} 7 | 10 |
11 | 21 | {{else}} 22 |
23 |
{{.Value}}
24 |
25 | 26 | {{end}} 27 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/custom.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_custom"}} 2 |
3 | {{.CustomContent}} 4 |
5 | {{if .CustomJs}} 6 | 9 | {{end}} 10 | {{if .CustomCss}} 11 | 14 | {{end}} 15 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/datetime.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_datetime"}} 2 | {{if not .Editable}} 3 |
4 |
5 | {{.Value}} 6 |
7 | 8 |
9 | {{else}} 10 |
11 | {{if ne .Label ""}} 12 | {{.Label}} 13 | {{else}} 14 | {{if not .NoIcon}} 15 | 16 | {{end}} 17 | {{end}} 18 | 22 |
23 | 28 | {{end}} 29 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/default.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_default"}} 2 |
3 |
4 | {{.Value}} 5 |
6 |
7 | 8 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/email.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_email"}} 2 | {{if .Editable}} 3 |
4 | 5 | 8 |
9 | {{else}} 10 |
11 |
{{.Value}}
12 |
13 | 14 | {{end}} 15 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/file.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_file"}} 2 | 4 | 5 | 6 | 15 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/help_block.tmpl: -------------------------------------------------------------------------------- 1 | {{define "help_block"}} 2 | {{if ne . ""}} 3 | 4 |  {{.}} 5 | 6 | {{end}} 7 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/iconpicker.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_iconpicker"}} 2 |
3 | {{if not .NoIcon}} 4 | 5 | {{end}} 6 | {{if eq .Value ""}} 7 | 10 | {{else}} 11 | 14 | {{end}} 15 |
16 | 19 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/ip.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_ip"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 10 |
11 | {{else}} 12 |
13 |
{{.Value}}
14 |
15 | 16 | {{end}} 17 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/multi_file.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_multi_file"}} 2 | 3 | 4 | 5 | 18 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/number.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_number"}} 2 | {{if .Editable}} 3 |
4 | 8 |
9 | 20 | {{else}} 21 |
22 |
{{.Value}}
23 |
24 | 25 | {{end}} 26 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/password.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_password"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 10 |
11 | {{else}} 12 |
13 |
********
14 |
15 | {{end}} 16 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/radio.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_radio"}} 2 | {{if .Editable}} 3 |
4 | {{range $key, $v := .Options }} 5 |  {{if ne $v.TextHTML ""}}{{$v.TextHTML}}{{else}}{{$v.Text}}{{end}}   8 | {{end}} 9 |
10 | 15 | {{else}} 16 |
17 |
{{.Value}}
18 |
19 | 20 | {{end}} 21 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/rate.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_rate"}} 2 | {{if .Editable}} 3 |
4 | 5 | % 6 |
7 | {{else}} 8 |
9 |
{{.Value}}
10 |
11 | 12 | {{end}} 13 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/richtext.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_rich_text"}} 2 |
3 |
4 | 6 | 23 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/select.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_select"}} 2 | 9 | 12 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/selectbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_selectbox"}} 2 | 8 | 17 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/singleselect.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_select_single"}} 2 | 10 | 13 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/slider.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_slider"}} 2 | {{if .Editable}} 3 | 4 | 7 | {{else}} 8 |
9 |
{{.Value}}
10 |
11 | 12 | {{end}} 13 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/switch.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_switch"}} 2 | 4 | {{$index := 0}} 5 | {{if eq (index .Options 0).SelectedLabel ""}} 6 | {{$index = 1}} 7 | {{end}} 8 | 9 | 29 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/textarea.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_textarea"}} 2 | 5 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form/url.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_url"}} 2 |
3 | {{if not .NoIcon}} 4 | 5 | {{end}} 6 | 9 |
10 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form_layout_default.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_default"}} 2 | 3 |
4 |
5 | {{ template "form_components_layout" . }} 6 |
7 |
8 | 9 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form_layout_filter.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_filter"}} 2 | 3 | {{range $key, $data := .Content}} 4 |
5 |
6 | 7 |
8 | {{template "form_components" $data}} 9 |
10 |
11 |
12 | {{end}} 13 | 14 |
15 |
16 | 17 | {{lang "reset"}} 18 |
19 |
20 | 21 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form_layout_flow.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_flow"}} 2 | 3 |
4 |
5 | {{ template "form_components_layout" . }} 6 |
7 |
8 | 9 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form_layout_tab.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_tab"}} 2 | 3 |
4 | 26 |
27 | 28 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/form_layout_two_col.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_two_col"}} 2 |
3 | {{ template "form_components_layout" .}} 4 |
5 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/label.tmpl: -------------------------------------------------------------------------------- 1 | {{define "label"}} 2 | {{langHtml .Content}} 3 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/link.tmpl: -------------------------------------------------------------------------------- 1 | {{define "link"}} 2 | {{.Content}} 3 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/row.tmpl: -------------------------------------------------------------------------------- 1 | {{define "row"}} 2 |
{{langHtml .Content}}
3 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/tabs.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tabs"}} 2 | 26 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/tree-header.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tree-header"}} 2 | 10 | 11 |
12 |  {{lang "save"}} 13 |
14 | 15 | 18 |
19 |
20 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/components/treeview.tmpl: -------------------------------------------------------------------------------- 1 | {{define "treeview"}} 2 |
3 | 6 | 31 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/footer.tmpl: -------------------------------------------------------------------------------- 1 | {{define "footer"}} 2 |
3 | 6 | 9 | Powered by GoAdmin. 10 | {{.FooterInfo}} 11 |
12 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/head.tmpl: -------------------------------------------------------------------------------- 1 | {{define "head"}} 2 | 3 | 4 | 5 | {{.Title}} 6 | 7 | 8 | 9 | 13 | 14 | {{.TmplHeadHTML}} 15 | 16 | {{.CustomHeadHtml}} 17 | 18 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/js.tmpl: -------------------------------------------------------------------------------- 1 | {{define "js"}} 2 | {{.TmplFootJS}} 3 | {{end}} -------------------------------------------------------------------------------- /adminlte/separation/public/pages/layout.tmpl: -------------------------------------------------------------------------------- 1 | {{define "layout"}} 2 | 3 | 4 | 5 | 6 | {{ template "head" . }} 7 | 8 | 9 |
10 | 11 | {{if not .Iframe}} 12 | 13 | {{ template "header" . }} 14 | 15 | {{ template "sidebar" . }} 16 | 17 | {{end}} 18 | 19 |
20 | 21 | {{ template "content" . }} 22 | 23 |
24 | 25 | {{if not .Iframe}} 26 | 27 | {{ template "footer" . }} 28 | 29 | {{end}} 30 | 31 |
32 | 33 | {{ template "js" . }} 34 | 35 | 36 | {{if not .Iframe}} 37 | {{.CustomFootHtml}} 38 | {{end}} 39 | 40 | 41 | {{end}} 42 | -------------------------------------------------------------------------------- /common/assets/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/css/blue.png -------------------------------------------------------------------------------- /common/assets/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/css/blue@2x.png -------------------------------------------------------------------------------- /common/assets/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /common/assets/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /common/assets/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /common/assets/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /common/assets/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /common/assets/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /common/assets/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /common/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /common/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /common/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /common/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /common/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /common/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /common/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /common/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /common/assets/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/ionicons.ttf -------------------------------------------------------------------------------- /common/assets/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/fonts/ionicons.woff -------------------------------------------------------------------------------- /common/assets/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/avatar04.png -------------------------------------------------------------------------------- /common/assets/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/clear.png -------------------------------------------------------------------------------- /common/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/loading.gif -------------------------------------------------------------------------------- /common/assets/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/plugin_default.png -------------------------------------------------------------------------------- /common/assets/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/plugin_more.png -------------------------------------------------------------------------------- /common/assets/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /common/assets/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /common/assets/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /common/assets/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /common/assets/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /common/assets/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /common/assets/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/common/assets/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /common/pages/403.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
403
3 |
Sorry, you don't have access to this page.
4 |
5 | 6 | -------------------------------------------------------------------------------- /common/pages/404.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
404
3 |
Sorry, the page you visited does not exist.
4 |
5 | 6 | -------------------------------------------------------------------------------- /common/pages/500.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
500
3 |
Sorry, the server is reporting an error.
4 |
5 | 6 | -------------------------------------------------------------------------------- /common/pages/components/alert.tmpl: -------------------------------------------------------------------------------- 1 | {{define "alert"}} 2 |
3 | 4 |

{{langHtml .Title}}

5 | {{langHtml .Content}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/box.tmpl: -------------------------------------------------------------------------------- 1 | {{define "box"}} 2 |
3 | {{if ne .Header ""}} 4 | {{if eq .HeadColor ""}} 5 |
6 | {{else}} 7 |
8 | {{end}} 9 | {{langHtml .Header}} 10 |
11 | {{end}} 12 | {{if ne .SecondHeader ""}} 13 | {{if eq .SecondHeadColor ""}} 14 |
15 | {{else}} 16 |
17 | {{end}} 18 | {{langHtml .SecondHeader}} 19 |
20 | {{end}} 21 |
22 | {{langHtml .Body}} 23 |
24 | {{if ne .Footer ""}} 25 | 28 | {{end}} 29 |
30 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/button.tmpl: -------------------------------------------------------------------------------- 1 | {{define "button"}} 2 |
3 | {{if eq .Href ""}} 4 | 7 | {{else}} 8 | 9 | {{langHtml .Content}} 10 | 11 | {{end}} 12 |
13 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/col.tmpl: -------------------------------------------------------------------------------- 1 | {{define "col"}} 2 |
{{langHtml .Content}}
3 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/checkbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox"}} 2 | {{range $key, $v := .Options }} 3 | 4 | 10 | 11 | {{end}} 12 | 15 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/checkbox_single.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox_single"}} 2 | 3 | 12 | 13 | 25 | {{end}} 26 | 27 | -------------------------------------------------------------------------------- /common/pages/components/form/checkbox_stacked.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox_stacked"}} 2 |
3 | {{range $key, $v := .Options }} 4 |
5 | 11 |
12 | {{end}} 13 |
14 | 17 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/code.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_code"}} 2 |
3 | 4 | 5 | 19 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/color.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_color"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 9 |
10 | 13 | {{else}} 14 |
15 |
{{.Value}}
16 |
17 | 18 | {{end}} 19 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/currency.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_currency"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | $ 6 | {{end}} 7 | 10 |
11 | 21 | {{else}} 22 |
23 |
{{.Value}}
24 |
25 | 26 | {{end}} 27 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/custom.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_custom"}} 2 |
3 | {{.CustomContent}} 4 |
5 | {{if .CustomJs}} 6 | 9 | {{end}} 10 | {{if .CustomCss}} 11 | 14 | {{end}} 15 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/datetime.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_datetime"}} 2 | {{if not .Editable}} 3 |
4 |
5 | {{.Value}} 6 |
7 | 8 |
9 | {{else}} 10 |
11 | {{if ne .Label ""}} 12 | {{.Label}} 13 | {{else}} 14 | {{if not .NoIcon}} 15 | 16 | {{end}} 17 | {{end}} 18 | 22 |
23 | 28 | {{end}} 29 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/default.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_default"}} 2 |
3 |
4 | {{.Value}} 5 |
6 |
7 | 8 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/email.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_email"}} 2 | {{if .Editable}} 3 |
4 | 5 | 8 |
9 | {{else}} 10 |
11 |
{{.Value}}
12 |
13 | 14 | {{end}} 15 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/file.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_file"}} 2 | 4 | 5 | 6 | 15 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/help_block.tmpl: -------------------------------------------------------------------------------- 1 | {{define "help_block"}} 2 | {{if ne . ""}} 3 | 4 |  {{.}} 5 | 6 | {{end}} 7 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/iconpicker.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_iconpicker"}} 2 |
3 | {{if not .NoIcon}} 4 | 5 | {{end}} 6 | {{if eq .Value ""}} 7 | 10 | {{else}} 11 | 14 | {{end}} 15 |
16 | 19 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/ip.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_ip"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 10 |
11 | {{else}} 12 |
13 |
{{.Value}}
14 |
15 | 16 | {{end}} 17 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/multi_file.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_multi_file"}} 2 | 3 | 4 | 5 | 18 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/number.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_number"}} 2 | {{if .Editable}} 3 |
4 | 8 |
9 | 20 | {{else}} 21 |
22 |
{{.Value}}
23 |
24 | 25 | {{end}} 26 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/password.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_password"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 10 |
11 | {{else}} 12 |
13 |
********
14 |
15 | {{end}} 16 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/radio.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_radio"}} 2 | {{if .Editable}} 3 |
4 | {{range $key, $v := .Options }} 5 |  {{if ne $v.TextHTML ""}}{{$v.TextHTML}}{{else}}{{$v.Text}}{{end}}   8 | {{end}} 9 |
10 | 15 | {{else}} 16 |
17 |
{{.Value}}
18 |
19 | 20 | {{end}} 21 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/rate.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_rate"}} 2 | {{if .Editable}} 3 |
4 | 5 | % 6 |
7 | {{else}} 8 |
9 |
{{.Value}}
10 |
11 | 12 | {{end}} 13 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/richtext.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_rich_text"}} 2 |
3 |
4 | 6 | 23 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/select.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_select"}} 2 | 9 | 12 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/selectbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_selectbox"}} 2 | 8 | 17 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/singleselect.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_select_single"}} 2 | 10 | 13 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/slider.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_slider"}} 2 | {{if .Editable}} 3 | 4 | 7 | {{else}} 8 |
9 |
{{.Value}}
10 |
11 | 12 | {{end}} 13 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/switch.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_switch"}} 2 | 4 | {{$index := 0}} 5 | {{if eq (index .Options 0).SelectedLabel ""}} 6 | {{$index = 1}} 7 | {{end}} 8 | 9 | 29 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/textarea.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_textarea"}} 2 | 5 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form/url.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_url"}} 2 |
3 | {{if not .NoIcon}} 4 | 5 | {{end}} 6 | 9 |
10 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form_layout_default.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_default"}} 2 | 3 |
4 |
5 | {{ template "form_components_layout" . }} 6 |
7 |
8 | 9 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form_layout_filter.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_filter"}} 2 | 3 | {{range $key, $data := .Content}} 4 |
5 |
6 | 7 |
8 | {{template "form_components" $data}} 9 |
10 |
11 |
12 | {{end}} 13 | 14 |
15 |
16 | 17 | {{lang "reset"}} 18 |
19 |
20 | 21 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form_layout_flow.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_flow"}} 2 | 3 |
4 |
5 | {{ template "form_components_layout" . }} 6 |
7 |
8 | 9 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form_layout_tab.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_tab"}} 2 | 3 |
4 | 26 |
27 | 28 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/form_layout_two_col.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_two_col"}} 2 |
3 | {{ template "form_components_layout" .}} 4 |
5 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/label.tmpl: -------------------------------------------------------------------------------- 1 | {{define "label"}} 2 | {{langHtml .Content}} 3 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/link.tmpl: -------------------------------------------------------------------------------- 1 | {{define "link"}} 2 | {{.Content}} 3 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/row.tmpl: -------------------------------------------------------------------------------- 1 | {{define "row"}} 2 |
{{langHtml .Content}}
3 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/tabs.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tabs"}} 2 | 26 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/tree-header.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tree-header"}} 2 | 10 | 11 |
12 |  {{lang "save"}} 13 |
14 | 15 | 18 |
19 |
20 | {{end}} -------------------------------------------------------------------------------- /common/pages/components/treeview.tmpl: -------------------------------------------------------------------------------- 1 | {{define "treeview"}} 2 |
3 | 6 | 31 | {{end}} -------------------------------------------------------------------------------- /common/pages/footer.tmpl: -------------------------------------------------------------------------------- 1 | {{define "footer"}} 2 |
3 | 6 | 9 | Powered by GoAdmin. 10 | {{.FooterInfo}} 11 |
12 | {{end}} -------------------------------------------------------------------------------- /common/pages/head.tmpl: -------------------------------------------------------------------------------- 1 | {{define "head"}} 2 | 3 | 4 | 5 | {{.Title}} 6 | 7 | 8 | 9 | 13 | 14 | {{.TmplHeadHTML}} 15 | 16 | {{.CustomHeadHtml}} 17 | 18 | {{end}} -------------------------------------------------------------------------------- /common/pages/js.tmpl: -------------------------------------------------------------------------------- 1 | {{define "js"}} 2 | {{.TmplFootJS}} 3 | {{end}} -------------------------------------------------------------------------------- /common/pages/layout.tmpl: -------------------------------------------------------------------------------- 1 | {{define "layout"}} 2 | 3 | 4 | 5 | 6 | {{ template "head" . }} 7 | 8 | 9 |
10 | 11 | {{if not .Iframe}} 12 | 13 | {{ template "header" . }} 14 | 15 | {{ template "sidebar" . }} 16 | 17 | {{end}} 18 | 19 |
20 | 21 | {{ template "content" . }} 22 | 23 |
24 | 25 | {{if not .Iframe}} 26 | 27 | {{ template "footer" . }} 28 | 29 | {{end}} 30 | 31 |
32 | 33 | {{ template "js" . }} 34 | 35 | 36 | {{if not .Iframe}} 37 | {{.CustomFootHtml}} 38 | {{end}} 39 | 40 | 41 | {{end}} 42 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/GoAdminGroup/themes 2 | 3 | go 1.21.5 4 | 5 | require github.com/GoAdminGroup/go-admin v1.2.26 6 | 7 | require ( 8 | github.com/GoAdminGroup/html v0.0.1 // indirect 9 | github.com/NebulousLabs/fastrand v0.0.0-20181203155948-6fb6489aac4e // indirect 10 | github.com/golang/snappy v0.0.4 // indirect 11 | github.com/google/uuid v1.6.0 // indirect 12 | github.com/syndtr/goleveldb v1.0.0 // indirect 13 | go.uber.org/atomic v1.9.0 // indirect 14 | go.uber.org/multierr v1.7.0 // indirect 15 | go.uber.org/zap v1.19.1 // indirect 16 | golang.org/x/crypto v0.20.0 // indirect 17 | golang.org/x/sys v0.17.0 // indirect 18 | golang.org/x/text v0.14.0 // indirect 19 | gopkg.in/ini.v1 v1.67.0 // indirect 20 | gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect 21 | gopkg.in/yaml.v2 v2.4.0 // indirect 22 | xorm.io/builder v0.3.7 // indirect 23 | xorm.io/xorm v1.0.2 // indirect 24 | ) 25 | -------------------------------------------------------------------------------- /sword/.gitignore: -------------------------------------------------------------------------------- 1 | /resource/assets/vendor -------------------------------------------------------------------------------- /sword/components/card/card.tmpl: -------------------------------------------------------------------------------- 1 | {{define "card"}} 2 |
3 |
4 |
5 |
6 |
7 |
8 | {{.Title}} 9 | {{if ne .Action ""}} 10 | 11 | {{.Action}} 12 | 13 | {{end}} 14 |
15 | {{if ne .SubTitle ""}} 16 |
{{.SubTitle}}
17 | {{end}} 18 |
19 |
20 |
21 | {{.Content}} 22 |
23 | 26 |
27 |
28 |
29 | {{end}} -------------------------------------------------------------------------------- /sword/components/chart_legend/chart_legend.go: -------------------------------------------------------------------------------- 1 | package chart_legend 2 | 3 | import ( 4 | "html/template" 5 | 6 | adminTemplate "github.com/GoAdminGroup/go-admin/template" 7 | ) 8 | 9 | type ChartLegend struct { 10 | *adminTemplate.BaseComponent 11 | 12 | Data []map[string]string 13 | } 14 | 15 | func New() ChartLegend { 16 | return ChartLegend{ 17 | BaseComponent: &adminTemplate.BaseComponent{ 18 | Name: "chart-legend", 19 | HTMLData: List["chart-legend"], 20 | }, 21 | } 22 | } 23 | 24 | func (c ChartLegend) SetData(value []map[string]string) ChartLegend { 25 | c.Data = value 26 | return c 27 | } 28 | 29 | func (c ChartLegend) GetContent() template.HTML { return c.GetContentWithData(c) } 30 | -------------------------------------------------------------------------------- /sword/components/chart_legend/chart_legend.tmpl: -------------------------------------------------------------------------------- 1 | {{define "chart-legend"}} 2 |
    3 | {{range $key, $data := .Data}} 4 |
  • {{index $data "label"}}
  • 5 | {{end}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /sword/components/chart_legend/chart_legend_tmpl.go: -------------------------------------------------------------------------------- 1 | package chart_legend 2 | 3 | var List = map[string]string{ 4 | "chart-legend": `{{define "chart-legend"}} 5 |
    6 | {{range $key, $data := .Data}} 7 |
  • {{index $data "label"}}
  • 8 | {{end}} 9 |
10 | {{end}}`, 11 | } 12 | -------------------------------------------------------------------------------- /sword/components/description/description.tmpl: -------------------------------------------------------------------------------- 1 | {{define "description"}} 2 |
3 | {{langHtml .Percent}}% 4 |
{{langHtml .Number}}
5 | {{langHtml .Title}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /sword/components/description/description_tmpl.go: -------------------------------------------------------------------------------- 1 | package description 2 | 3 | var List = map[string]string{ 4 | "description": `{{define "description"}} 5 |
6 | {{langHtml .Percent}}% 7 |
{{langHtml .Number}}
8 | {{langHtml .Title}} 9 |
10 | {{end}}`, 11 | } 12 | -------------------------------------------------------------------------------- /sword/components/progress_group/progress_group.tmpl: -------------------------------------------------------------------------------- 1 | {{define "progress-group"}} 2 |
3 | {{langHtml .Title}} 4 | {{.Molecular}}/{{.Denominator}} 5 | 6 |
7 | {{if .IsHexColor}} 8 |
9 | {{else}} 10 |
11 | {{end}} 12 |
13 |
14 | {{end}} -------------------------------------------------------------------------------- /sword/components/progress_group/progress_group_tmpl.go: -------------------------------------------------------------------------------- 1 | package progress_group 2 | 3 | var List = map[string]string{ 4 | "progress-group": `{{define "progress-group"}} 5 |
6 | {{langHtml .Title}} 7 | {{.Molecular}}/{{.Denominator}} 8 | 9 |
10 | {{if .IsHexColor}} 11 |
12 | {{else}} 13 |
14 | {{end}} 15 |
16 |
17 | {{end}}`, 18 | } 19 | -------------------------------------------------------------------------------- /sword/go_plugin/Makefile: -------------------------------------------------------------------------------- 1 | all: build 2 | 3 | build: 4 | go build -buildmode=plugin -o sword.so main.go -------------------------------------------------------------------------------- /sword/resource/assets.go: -------------------------------------------------------------------------------- 1 | package resource 2 | 3 | import "embed" 4 | 5 | //go:embed assets/dist/* 6 | var AssetFS embed.FS 7 | -------------------------------------------------------------------------------- /sword/resource/assets/dist/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/css/blue.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/css/blue@2x.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/ionicons.ttf -------------------------------------------------------------------------------- /sword/resource/assets/dist/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/fonts/ionicons.woff -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/clear.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/loading.gif -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/plugin_default.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/plugin_more.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /sword/resource/assets/dist/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/assets/dist/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /sword/resource/assets_path.go: -------------------------------------------------------------------------------- 1 | package resource 2 | 3 | var AssetPaths = map[string]string{ 4 | "all.min.css": "/dist/css/all.min.dd4b069ab5.css", 5 | "all.min.js": "/dist/js/all.min.506636f003.js", 6 | "all_2.min.js": "/dist/js/all_2.min.1cd3070239.js", 7 | "datatable.min.js": "/dist/js/datatable.min.43c12443cf.js", 8 | "form.min.js": "/dist/js/form.min.4022a41f70.js", 9 | "html5shiv.min.js": "/dist/js/html5shiv.min.js", 10 | "respond.min.js": "/dist/js/respond.min.js", 11 | "tree.min.js": "/dist/js/tree.min.b68a8b6689.js", 12 | "treeview.min.js": "/dist/js/treeview.min.3095cd8c12.js", 13 | } 14 | -------------------------------------------------------------------------------- /sword/resource/sword/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/sword/blue.png -------------------------------------------------------------------------------- /sword/resource/sword/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/resource/sword/blue@2x.png -------------------------------------------------------------------------------- /sword/resource/sword/pages/403.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
403
3 |
Sorry, you don't have access to this page.
4 |
5 | 6 | -------------------------------------------------------------------------------- /sword/resource/sword/pages/404.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
404
3 |
Sorry, the page you visited does not exist.
4 |
5 | 6 | -------------------------------------------------------------------------------- /sword/resource/sword/pages/500.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
500
3 |
Sorry, the server is reporting an error.
4 |
5 | 6 | -------------------------------------------------------------------------------- /sword/resource/sword/pages/components/tree-header.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tree-header"}} 2 | 10 | 11 |
12 |  {{lang "save"}} 13 |
14 | 15 | 18 |
19 |
20 | {{end}} -------------------------------------------------------------------------------- /sword/resource/sword/pages/layout.tmpl: -------------------------------------------------------------------------------- 1 | {{define "layout"}} 2 | 3 | 4 | 5 | 6 | {{ template "head" . }} 7 | 8 | 9 |
10 | 11 | {{if not .Iframe}} 12 | 13 | {{ template "header" . }} 14 | 15 | {{ template "sidebar" . }} 16 | 17 | {{end}} 18 | 19 |
20 | 21 | {{ template "content" . }} 22 | 23 |
24 | 25 | {{if not .Iframe}} 26 | 27 | {{ template "footer" . }} 28 | 29 | {{end}} 30 | 31 |
32 | 33 | {{ template "js" . }} 34 | 35 | 36 | {{if not .Iframe}} 37 | {{.CustomFootHtml}} 38 | {{end}} 39 | 40 | 41 | {{end}} 42 | -------------------------------------------------------------------------------- /sword/resource/sword/pages/sidebar.tmpl: -------------------------------------------------------------------------------- 1 | {{define "sidebar"}} 2 | 9 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public.zip -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/css/blue.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/css/blue@2x.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/ionicons.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/fonts/ionicons.woff -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/clear.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/loading.gif -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/plugin_default.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/plugin_more.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/dist/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/dist/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/css/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/css/blue.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/css/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/css/blue@2x.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/css/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdr.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdr.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/css/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDc.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18E.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18E.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/ionicons.ttf -------------------------------------------------------------------------------- /sword/separation/public/assets/src/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/fonts/ionicons.woff -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/avatar04.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/clear.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/loading.gif -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/plugin_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/plugin_default.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/plugin_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/plugin_more.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/assets/src/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoAdminGroup/themes/5848ac97c54123f1623478f704a43e8a98786678/sword/separation/public/assets/src/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /sword/separation/public/pages/403.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
403
3 |
Sorry, you don't have access to this page.
4 |
5 | 6 | -------------------------------------------------------------------------------- /sword/separation/public/pages/404.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
404
3 |
Sorry, the page you visited does not exist.
4 |
5 | 6 | -------------------------------------------------------------------------------- /sword/separation/public/pages/500.tmpl: -------------------------------------------------------------------------------- 1 |
2 |
500
3 |
Sorry, the server is reporting an error.
4 |
5 | 6 | -------------------------------------------------------------------------------- /sword/separation/public/pages/components/alert.tmpl: -------------------------------------------------------------------------------- 1 | {{define "alert"}} 2 |
3 | 4 |

{{langHtml .Title}}

5 | {{langHtml .Content}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/box.tmpl: -------------------------------------------------------------------------------- 1 | {{define "box"}} 2 |
3 | {{if ne .Header ""}} 4 | {{if eq .HeadColor ""}} 5 |
6 | {{else}} 7 |
8 | {{end}} 9 | {{langHtml .Header}} 10 |
11 | {{end}} 12 | {{if ne .SecondHeader ""}} 13 | {{if eq .SecondHeadColor ""}} 14 |
15 | {{else}} 16 |
17 | {{end}} 18 | {{langHtml .SecondHeader}} 19 |
20 | {{end}} 21 |
22 | {{langHtml .Body}} 23 |
24 | {{if ne .Footer ""}} 25 | 28 | {{end}} 29 |
30 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/button.tmpl: -------------------------------------------------------------------------------- 1 | {{define "button"}} 2 |
3 | {{if eq .Href ""}} 4 | 7 | {{else}} 8 | 9 | {{langHtml .Content}} 10 | 11 | {{end}} 12 |
13 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/col.tmpl: -------------------------------------------------------------------------------- 1 | {{define "col"}} 2 |
{{langHtml .Content}}
3 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/checkbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox"}} 2 | {{range $key, $v := .Options }} 3 | 4 | 10 | 11 | {{end}} 12 | 15 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/checkbox_single.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox_single"}} 2 | 3 | 12 | 13 | 25 | {{end}} 26 | 27 | -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/checkbox_stacked.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_checkbox_stacked"}} 2 |
3 | {{range $key, $v := .Options }} 4 |
5 | 11 |
12 | {{end}} 13 |
14 | 17 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/code.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_code"}} 2 |
3 | 4 | 5 | 19 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/color.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_color"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 9 |
10 | 13 | {{else}} 14 |
15 |
{{.Value}}
16 |
17 | 18 | {{end}} 19 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/currency.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_currency"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | $ 6 | {{end}} 7 | 10 |
11 | 21 | {{else}} 22 |
23 |
{{.Value}}
24 |
25 | 26 | {{end}} 27 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/custom.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_custom"}} 2 |
3 | {{.CustomContent}} 4 |
5 | {{if .CustomJs}} 6 | 9 | {{end}} 10 | {{if .CustomCss}} 11 | 14 | {{end}} 15 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/datetime.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_datetime"}} 2 | {{if not .Editable}} 3 |
4 |
5 | {{.Value}} 6 |
7 | 8 |
9 | {{else}} 10 |
11 | {{if ne .Label ""}} 12 | {{.Label}} 13 | {{else}} 14 | {{if not .NoIcon}} 15 | 16 | {{end}} 17 | {{end}} 18 | 22 |
23 | 28 | {{end}} 29 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/default.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_default"}} 2 |
3 |
4 | {{.Value}} 5 |
6 |
7 | 8 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/email.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_email"}} 2 | {{if .Editable}} 3 |
4 | 5 | 8 |
9 | {{else}} 10 |
11 |
{{.Value}}
12 |
13 | 14 | {{end}} 15 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/file.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_file"}} 2 | 4 | 5 | 6 | 15 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/help_block.tmpl: -------------------------------------------------------------------------------- 1 | {{define "help_block"}} 2 | {{if ne . ""}} 3 | 4 |  {{.}} 5 | 6 | {{end}} 7 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/iconpicker.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_iconpicker"}} 2 |
3 | {{if not .NoIcon}} 4 | 5 | {{end}} 6 | {{if eq .Value ""}} 7 | 10 | {{else}} 11 | 14 | {{end}} 15 |
16 | 19 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/ip.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_ip"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 10 |
11 | {{else}} 12 |
13 |
{{.Value}}
14 |
15 | 16 | {{end}} 17 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/multi_file.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_multi_file"}} 2 | 3 | 4 | 5 | 18 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/number.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_number"}} 2 | {{if .Editable}} 3 |
4 | 8 |
9 | 20 | {{else}} 21 |
22 |
{{.Value}}
23 |
24 | 25 | {{end}} 26 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/password.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_password"}} 2 | {{if .Editable}} 3 |
4 | {{if not .NoIcon}} 5 | 6 | {{end}} 7 | 10 |
11 | {{else}} 12 |
13 |
********
14 |
15 | {{end}} 16 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/radio.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_radio"}} 2 | {{if .Editable}} 3 |
4 | {{range $key, $v := .Options }} 5 |  {{if ne $v.TextHTML ""}}{{$v.TextHTML}}{{else}}{{$v.Text}}{{end}}   8 | {{end}} 9 |
10 | 15 | {{else}} 16 |
17 |
{{.Value}}
18 |
19 | 20 | {{end}} 21 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/rate.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_rate"}} 2 | {{if .Editable}} 3 |
4 | 5 | % 6 |
7 | {{else}} 8 |
9 |
{{.Value}}
10 |
11 | 12 | {{end}} 13 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/richtext.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_rich_text"}} 2 |
3 |
4 | 6 | 23 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/select.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_select"}} 2 | 9 | 12 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/selectbox.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_selectbox"}} 2 | 8 | 17 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/singleselect.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_select_single"}} 2 | 10 | 13 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/slider.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_slider"}} 2 | {{if .Editable}} 3 | 4 | 7 | {{else}} 8 |
9 |
{{.Value}}
10 |
11 | 12 | {{end}} 13 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/switch.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_switch"}} 2 | 4 | {{$index := 0}} 5 | {{if eq (index .Options 0).SelectedLabel ""}} 6 | {{$index = 1}} 7 | {{end}} 8 | 9 | 29 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/textarea.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_textarea"}} 2 | 5 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form/url.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_url"}} 2 |
3 | {{if not .NoIcon}} 4 | 5 | {{end}} 6 | 9 |
10 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form_layout_default.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_default"}} 2 | 3 |
4 |
5 | {{ template "form_components_layout" . }} 6 |
7 |
8 | 9 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form_layout_filter.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_filter"}} 2 | 3 | {{range $key, $data := .Content}} 4 |
5 |
6 | 7 |
8 | {{template "form_components" $data}} 9 |
10 |
11 |
12 | {{end}} 13 | 14 |
15 |
16 | 17 | {{lang "reset"}} 18 |
19 |
20 | 21 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form_layout_flow.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_flow"}} 2 | 3 |
4 |
5 | {{ template "form_components_layout" . }} 6 |
7 |
8 | 9 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form_layout_tab.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_tab"}} 2 | 3 |
4 | 26 |
27 | 28 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/form_layout_two_col.tmpl: -------------------------------------------------------------------------------- 1 | {{define "form_layout_two_col"}} 2 |
3 | {{ template "form_components_layout" .}} 4 |
5 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/label.tmpl: -------------------------------------------------------------------------------- 1 | {{define "label"}} 2 | {{langHtml .Content}} 3 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/link.tmpl: -------------------------------------------------------------------------------- 1 | {{define "link"}} 2 | {{.Content}} 3 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/row.tmpl: -------------------------------------------------------------------------------- 1 | {{define "row"}} 2 |
{{langHtml .Content}}
3 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/tabs.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tabs"}} 2 | 26 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/tree-header.tmpl: -------------------------------------------------------------------------------- 1 | {{define "tree-header"}} 2 | 10 | 11 |
12 |  {{lang "save"}} 13 |
14 | 15 | 18 |
19 |
20 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/components/treeview.tmpl: -------------------------------------------------------------------------------- 1 | {{define "treeview"}} 2 |
3 | 6 | 31 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/footer.tmpl: -------------------------------------------------------------------------------- 1 | {{define "footer"}} 2 |
3 | 6 | 9 | Powered by GoAdmin. 10 | {{.FooterInfo}} 11 |
12 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/head.tmpl: -------------------------------------------------------------------------------- 1 | {{define "head"}} 2 | 3 | 4 | 5 | {{.Title}} 6 | 7 | 8 | 9 | 13 | 14 | {{.TmplHeadHTML}} 15 | 16 | {{.CustomHeadHtml}} 17 | 18 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/js.tmpl: -------------------------------------------------------------------------------- 1 | {{define "js"}} 2 | {{.TmplFootJS}} 3 | {{end}} -------------------------------------------------------------------------------- /sword/separation/public/pages/layout.tmpl: -------------------------------------------------------------------------------- 1 | {{define "layout"}} 2 | 3 | 4 | 5 | 6 | {{ template "head" . }} 7 | 8 | 9 |
10 | 11 | {{if not .Iframe}} 12 | 13 | {{ template "header" . }} 14 | 15 | {{ template "sidebar" . }} 16 | 17 | {{end}} 18 | 19 |
20 | 21 | {{ template "content" . }} 22 | 23 |
24 | 25 | {{if not .Iframe}} 26 | 27 | {{ template "footer" . }} 28 | 29 | {{end}} 30 | 31 |
32 | 33 | {{ template "js" . }} 34 | 35 | 36 | {{if not .Iframe}} 37 | {{.CustomFootHtml}} 38 | {{end}} 39 | 40 | 41 | {{end}} 42 | -------------------------------------------------------------------------------- /sword/separation/public/pages/sidebar.tmpl: -------------------------------------------------------------------------------- 1 | {{define "sidebar"}} 2 | 9 | {{end}} --------------------------------------------------------------------------------