Sikuliaq IT Asset Manager (skqitam)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

280 lines
14 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="author" content="John Haverlack (jehaverlack@alaska.edu)">
  8. <link rel="shortcut icon" href="img/favicon.ico">
  9. <title>Editing - Sikuliaq IT Asset Manager</title>
  10. <link href="css/bootstrap.min.css" rel="stylesheet">
  11. <link href="css/font-awesome.min.css" rel="stylesheet">
  12. <link href="css/base.css" rel="stylesheet">
  13. <link href="js/styles/default.css" rel="stylesheet">
  14. <link href="css/all.min.css" rel="stylesheet">
  15. <link href="css/satnag-icons.css" rel="stylesheet">
  16. <link href="css/uaf.css" rel="stylesheet">
  17. <link href="css/cfos.css" rel="stylesheet">
  18. <link href="css/cfos-theme.css" rel="stylesheet">
  19. <link href="css/jquery.json-viewer.css" rel="stylesheet">
  20. <link href="css/jjsonviewer.css" rel="stylesheet">
  21. <link href="css/cfosgroups.css" rel="stylesheet">
  22. <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  23. <!--[if lt IE 9]>
  24. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  25. <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  26. <![endif]-->
  27. <script src="js/jquery-1.10.2.min.js" defer></script>
  28. <script src="js/bootstrap.min.js" defer></script>
  29. </head>
  30. <body>
  31. <div id="banner" style="position: relative; top: -70px; width: 100%; z-index:100;">
  32. <div class="row">
  33. <div id="banner-bar" class="col-sm-12">
  34. <div style="width: 100%; padding: 10px;">
  35. <a href="http://uaf.edu/"><img class="uaflogo" alt="UAF logo" src="img/uaflogoBlue.png"></a>
  36. <a class="text-white" style="font-weight: bold; margin-top: auto; margin-bottom: 10px;" href="https://uaf.edu">UNIVERSITY OF ALASKA FAIRBANKS</a>
  37. </div>
  38. </div>
  39. </div>
  40. <div class="row" style="background: #007682; height: 8px;"></div>
  41. <div class="row">
  42. <div id="banner-logo" class="col-sm-12">
  43. <div id="banner-title">
  44. <div class="cfostitle">
  45. <!-- <a href="https://www.sikuliaq.alaska.edu/"><i>R/V Sikuliaq</i></a> -->
  46. <a href="https://www.sikuliaq.alaska.edu/" title="R/V Sikuliaq"><img alt="R/V Sikuliaq" src="img/SKQShipLogo-White.png"> <span style="font-weight: bold; font-style: italic; margin-top: auto; margin-bottom: auto;"></span></a> R/V <i>Sikuliaq</i>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="navbar navbar-expand-lg navbar-dark bg-primary" style="top: -70px;">
  54. <div class="container">
  55. <a class="navbar-brand" href=".">Sikuliaq IT Asset Manager</a>
  56. <!-- Expander button -->
  57. <button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar-collapse">
  58. <span class="navbar-toggler-icon"></span>
  59. </button>
  60. <!-- Expanded navigation -->
  61. <div id="navbar-collapse" class="navbar-collapse collapse">
  62. <!-- Main navigation -->
  63. <ul class="nav navbar-nav">
  64. <li class="navitem">
  65. <a href="index.html" class="nav-link"><span class="fas fa-home"></span></a>
  66. </li>
  67. <li class="dropdown">
  68. <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">About <b class="caret"></b></a>
  69. <ul class="dropdown-menu">
  70. <li>
  71. <a href="contact.html" class="dropdown-item">Contact</a>
  72. </li>
  73. <li>
  74. <a href="license.html" class="dropdown-item">License</a>
  75. </li>
  76. <li>
  77. <a href="versions.html" class="dropdown-item">Changelog</a>
  78. </li>
  79. </ul>
  80. </li>
  81. </ul>
  82. <ul class="nav navbar-nav ml-auto">
  83. <li class="nav-item">
  84. <a href="#" class="nav-link" data-toggle="modal" data-target="#mkdocs_search_modal">
  85. <i class="fa fa-search"></i> Search
  86. </a>
  87. </li>
  88. <li class="nav-item">
  89. <a href="https://github.alaska.edu/skq/skq-it-am.git" class="nav-link"><span class="fab fa-git-square"></span></a>
  90. </li>
  91. </ul>
  92. </div>
  93. </div>
  94. </div>
  95. <div class="container">
  96. <div class="row">
  97. <!-- <div class="col-md-3"></div> -->
  98. <div class="col-md-12" role="main" style="top: -50px;">
  99. <h2 id="editing-content">Editing content</h2>
  100. <p>Editing MkDocs site content involves editing 2 source code files.</p>
  101. <ul>
  102. <li><code>mkdocs.yml</code></li>
  103. <li><code>docs/*.md</code></li>
  104. </ul>
  105. <h3 id="mkdocsyml">mkdocs.yml</h3>
  106. <p>The <code>mkdocs.yml</code> master configuration file is a (<a href="https://en.wikipedia.org/wiki/YAML">YAML</a>) format config file. Editing the navigation menu configuration in straight forward and can be done by modifying the template <code>mkdocs.yml</code> file.</p>
  107. <h4 id="menu-navigation">Menu Navigation</h4>
  108. <div class="alert alert-info">
  109. To modify the navigation menu find the following section in <code>mkdocs.yml</code>. NOTE the <b>top level nav menu</b> items such as <b>Setup</b>, <b>Features</b>, and <b>About</b>. And the paged under each top level nav item.
  110. </div>
  111. <pre><code class="language-yml">nav:
  112. - &lt;span class=&quot;fas fa-home&quot;&gt;&lt;/span&gt;: index.md
  113. - Setup:
  114. - Install: install.md
  115. - Optional Tool: optional.md
  116. - Cloning Site: cloning.md
  117. - Build Site: build.md
  118. - Testing Site: test.md
  119. - Editing Content: editing.md
  120. - Features:
  121. - Search: search.md
  122. - Swipe Nav: swipe.md
  123. - Version: version.md
  124. - Menu Nav: menu.md
  125. - Code: code.md
  126. - Equations: equations.md
  127. - Footnotes: footnotes.md
  128. - Icons: icons.md
  129. - Bootstrap: bootstrap.md
  130. - PDF: contact.md
  131. - About:
  132. - Contact: contact.md
  133. </code></pre>
  134. <div class="alert alert-info">
  135. See how the HTML renders a <a target="_blank" href="https://getbootstrap.com/docs/3.3/components/#navbar-default">Bootstrap</a> menu.
  136. </div>
  137. <p><a href="img/mkdocs-menu-nav.png"><img class="img-responsive img-circle" alt="MenuNaV" src="img/mkdocs-menu-nav.png" style="width: 600px;"></a></p>
  138. <h3 id="docsmd">docs/*.md</h3>
  139. <div class="alert alert-info">
  140. In the above <code>mkdocs.yml</code> nav section notice that the content is stored in <code>*.md</code> <a target="_blank" href="https://en.wikipedia.org/wiki/Markdown"><span class="fab fa-markdown"></span> Markdown</a> files.
  141. </div>
  142. <p>To edit the content of the Markdown file in the <code>docs</code> directory simply edit the content of the <code>docs/*.md</code> file. Then rebuild the site to test.</p>
  143. <div class="alert alert-success">
  144. Markdown files can contain inline HTML, or pure Markdown code.
  145. </div>
  146. <hr />
  147. <p><a class='btn btn-primary' href="search.html"><span class="fas fa-chevron-right"></span> Features</a></p></div>
  148. </div>
  149. </div>
  150. <!-- style="position: relative; top: -100px;" -->
  151. <!-- <div class="alert alert-danger" role="alert">
  152. <p><span class="fas fa-exclamation-circle"></span>
  153. This website is an incomplete and active work in progress. Please send feedback to <a href="mailto:jehaverlack@alaska.edu">jehaverlack@alaska.edu</a>
  154. </p>
  155. </div> -->
  156. <footer class="col-md-12 footer" >
  157. <p class="small">The University of Alaska Fairbanks is <a target="_blank" href="https://uaf.edu/accreditation/">accredited</a> by the Northwest Commission on Colleges and Universities.<br>UAF is an AA/EO employer and educational institution and prohibits illegal discrimination against any individual. Learn more about UA's <a target="_blank" href="https://www.alaska.edu/nondiscrimination" >notice of nondiscrimination</a>.<br>UA is committed to providing accessible websites. Learn more about UA's <a target="_blank" href="https://www.alaska.edu/webaccessibility" >notice of web accessibility</a>.<br><a target="_blank" href="https://www.alaska.edu/records/compliance/gdpr/ua-privacy-statement/index.xml" >Privacy Statement</a></p>
  158. <p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
  159. <p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
  160. <p class="small">Version: 0.0.9 2021-06-24 (Beta)</p>
  161. <p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
  162. </footer>
  163. <div class="row" style="margin-right: 20px;">
  164. <div class="col-sm-12" style="text-align: right; valign: middle;">
  165. <a target="_blank" href="https://www.uaf.edu/"><img alt="University of Alaska Fairbanks" title="University of Alaska Fairbanks" style="max-height: 50px;" src="img/UAF.png"></a>
  166. <a target="_blank" href="https://www.uaf.edu/cfos/"><img alt="UAF College of Fisheries and Ocean Sciences" title="UAF College of Fisheries and Ocean Sciences" style="max-height: 50px;" src="img/SMALL-CFOS.jpg"></a>
  167. <a target="_blank" href="https://www.sikuliaq.alaska.edu/"><img alt="R/V Sikuliaq" title="R/V Sikuliaq" style="max-height: 50px;" src="img/sikuliaqlogo.png"></a>
  168. <a target="_blank" href="https://www.unols.org/"><img alt="University-National Laboratory System" title="University-National Laboratory System" style="max-height: 50px;" src="img/unols-logo.png"></a>
  169. <a target="_blank" href="https://www.nsf.gov/"><img alt="National Science Foundation" title="National Science Foundation" style="max-height: 65px;" src="img/NSF.png"></a>
  170. </div>
  171. </div>
  172. <script>
  173. var base_url = ".",
  174. shortcuts = {"help": 191, "next": 78, "previous": 80, "search": 83};
  175. </script>
  176. <script src="js/base.js" defer></script>
  177. <script src="js/highlight.pack.js" defer></script>
  178. <script src="js/highlightinit.js" defer></script>
  179. <script src="js/jquery.json-viewer.js" defer></script>
  180. <script src="js/jquery.event.move.js" defer></script>
  181. <script src="js/jquery.event.swipe.js" defer></script>
  182. <script src="js/MathJax.js?config=TeX-AMS-MML_HTMLorMML" defer></script>
  183. <script src="js/swipenav.js" defer></script>
  184. <script src="js/hometitle.js" defer></script>
  185. <script src="js/clipboard.min.js" defer></script>
  186. <script src="js/chart.min.js" defer></script>
  187. <script src="js/skq-it-am.js" defer></script>
  188. <script src="search/main.js" defer></script>
  189. <div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-hidden="true">
  190. <div class="modal-dialog modal-lg">
  191. <div class="modal-content">
  192. <div class="modal-header">
  193. <h4 class="modal-title" id="searchModalLabel">Search</h4>
  194. <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
  195. </div>
  196. <div class="modal-body">
  197. <p>
  198. From here you can search these documents. Enter
  199. your search terms below.
  200. </p>
  201. <form>
  202. <div class="form-group">
  203. <input type="search" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here">
  204. </div>
  205. </form>
  206. <div id="mkdocs-search-results"></div>
  207. </div>
  208. <div class="modal-footer">
  209. </div>
  210. </div>
  211. </div>
  212. </div><div class="modal" id="mkdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="keyboardModalLabel" aria-hidden="true">
  213. <div class="modal-dialog">
  214. <div class="modal-content">
  215. <div class="modal-header">
  216. <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>
  217. <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
  218. </div>
  219. <div class="modal-body">
  220. <table class="table">
  221. <thead>
  222. <tr>
  223. <th style="width: 20%;">Keys</th>
  224. <th>Action</th>
  225. </tr>
  226. </thead>
  227. <tbody>
  228. <tr>
  229. <td class="help shortcut"><kbd>?</kbd></td>
  230. <td>Open this help</td>
  231. </tr>
  232. <tr>
  233. <td class="next shortcut"><kbd>n</kbd></td>
  234. <td>Next page</td>
  235. </tr>
  236. <tr>
  237. <td class="prev shortcut"><kbd>p</kbd></td>
  238. <td>Previous page</td>
  239. </tr>
  240. <tr>
  241. <td class="search shortcut"><kbd>s</kbd></td>
  242. <td>Search</td>
  243. </tr>
  244. </tbody>
  245. </table>
  246. </div>
  247. <div class="modal-footer">
  248. </div>
  249. </div>
  250. </div>
  251. </div>
  252. </body>
  253. </html>