"Fossies" - the Fresh Open Source Software Archive 
Member "pmd-src-6.47.0/docs/_layouts/default.html" (25 Jun 2022, 3833 Bytes) of package /linux/misc/pmd-src-6.47.0.zip:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) HTML source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 {% include head.html %}
5 <script>
6 $(document).ready(function() {
7 // Initialize navgoco with default options
8 $("#mysidebar").navgoco({
9 caretHtml: '',
10 accordion: true,
11 openClass: 'active', // open
12 save: false, // leave false or nav highlighting doesn't work right
13 cookie: {
14 name: 'navgoco',
15 expires: false,
16 path: '/'
17 },
18 slide: {
19 duration: 400,
20 easing: 'swing'
21 }
22 });
23
24 $("#collapseAll").click(function(e) {
25 e.preventDefault();
26 $("#mysidebar").navgoco('toggle', false);
27 });
28
29 $("#expandAll").click(function(e) {
30 e.preventDefault();
31 $("#mysidebar").navgoco('toggle', true);
32 });
33
34 });
35
36 </script>
37 <script>
38 $(function () {
39 $('[data-toggle="tooltip"]').tooltip()
40 })
41 </script>
42 <script>
43 $(document).ready(function() {
44 $("#tg-sb-link").click(function() {
45 $("#tg-sb-sidebar").toggle();
46 $("#tg-sb-content").toggleClass('col-md-9');
47 $("#tg-sb-content").toggleClass('col-md-12');
48 $("#tg-sb-icon").toggleClass('fa-toggle-on');
49 $("#tg-sb-icon").toggleClass('fa-toggle-off');
50 });
51 });
52 </script>
53 {% if page.datatable == true %}
54 <!-- Include the standard DataTables bits -->
55 <link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.css">
56 <script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.js"></script>
57 <!-- First, this walks through the tables that occur between ...-begin
58 and ...-end and add the "datatable" class to them.
59 Then it invokes DataTable's standard initializer
60 Credit here: http://www.beardedhacker.com/blog/2015/08/28/add-class-attribute-to-markdown-table/
61 -->
62 <script>
63 $(document).ready(function(){
64 $('div.datatable-begin').nextUntil('div.datatable-end', 'table').addClass('display');
65 $('table.display').DataTable( {
66 paging: true,
67 stateSave: true,
68 searching: true
69 });
70 });
71 </script>
72 {% endif %}
73
74 </head>
75 <body>
76 <!-- Content is offset by the height of the topnav bar. -->
77 <!-- There's already a padding-top rule in modern-business.css, but it apparently doesn't work on Firefox 60 and Chrome 67 -->
78 <div id="topbar-content-offset">
79 {% include topnav.html %}
80 <!-- Page Content -->
81 <div class="container-toc-wrapper">
82 <div class="container">
83 <div class="col-lg-12"> </div>
84 <!-- Content Row -->
85 <div class="row">
86 {% assign content_col_size = "col-md-12" %}
87 {% unless page.hide_sidebar %}
88 <!-- Sidebar Column -->
89 <div class="col-md-3" id="tg-sb-sidebar">
90 {% include sidebar.html %}
91 </div>
92 {% assign content_col_size = "col-md-9" %}
93 {% endunless %}
94
95 <!-- Content Column -->
96 <div class="{{content_col_size}}" id="tg-sb-content">
97 {{content}}
98 </div>
99
100 <!-- /.row -->
101 </div>
102 <!-- /.container -->
103 </div>
104
105 {% unless page.toc == false %}
106 <!-- Sticky TOC column -->
107 <div class="toc-col">
108 <div id="toc"></div>
109 </div>
110 {% endunless %}
111 <!-- /.toc-container-wrapper -->
112 </div>
113 </div>
114 </body>
115 {% if site.google_analytics %}
116 {% include google_analytics.html %}
117 {% endif %}
118 </html>