1010
1111 < div class ="col-md-8 ">
1212 < h1 > {{ page.title }}</ h1 >
13+
14+ < div id ="markdown-content-container "> < table >
15+ < thead >
16+ < tr >
17+ < th > Written by</ th >
18+ < th > for Version</ th >
19+ < th > Revised by</ th >
20+ < th > Revision date</ th >
21+ < th > Revised version</ th >
22+ </ tr >
23+ </ thead >
24+ < tbody >
25+ < tr >
26+ < td > < a href ="https://github.com/{{ page.written_by }} "> @{{ page.written_by }}</ a > </ td >
27+ < td > {{ page.for_version }}</ td >
28+ < td > < a href ="https://github.com/{{ page.revised_by }} "> @{{ page.revised_by }}</ a > </ td >
29+ < td > {{ page.revision_date }}</ td >
30+ < td > {{ page.revised_version }}</ td >
31+ </ tr >
32+ </ tbody >
33+ </ table >
34+ </ div >
35+ {% unless page.disable_header %}
36+ < div id ="markdown-content-container ">
37+ < strong > At one glance:</ strong >
38+ < table style ="width:50% ">
39+ < tbody >
40+ < tr >
41+ < td > < h6 id ="solver-elasticity "> Solver:</ h6 > </ td >
42+ < td > < h6 > < code style ="text-transform: uppercase; " class ="language-plaintext highlighter-rouge "> {{ page.solver }}</ code > </ h6 > </ td >
43+ </ tr >
44+ < tr >
45+ < td > < h6 id ="solver-elasticity "> Uses:</ h6 > </ td >
46+ < td > < h6 > < code style ="text-transform: uppercase; " class ="language-plaintext highlighter-rouge "> {{ page.requires }}</ code > </ h6 > </ td >
47+ </ tr >
48+ {% if page.userguide %}
49+ < tr >
50+ < td > < h6 id ="solver-userguide "> User Guide:</ h6 > </ td >
51+ < td > < h6 >
52+ {% for section in site.data.docs_v7 %}
53+ {% for item in section.docs_v7 %}
54+ {% if item == page.userguide %}
55+ {% assign item_url = item | prepend:"/docs_v7/" | append:"/" %}
56+ {% assign p = site.docs_v7 | where:"url", item_url | first %}
57+ < a href ="{{p.permalink}} "> < strong > {{p.title}}</ strong > </ a >
58+ {% endif %}
59+ {% endfor %}
60+ {% endfor %}
61+ </ tr >
62+ {% endif %}
63+ < tr >
64+ < td > < h6 id ="solver-elasticity "> Prerequisites:</ h6 > </ td >
65+ < td > < h6 > {% if page.follows %}
66+ {% for section in site.data.tutorials %}
67+ {% for item in section.tutorials %}
68+ {% if item == page.follows %}
69+ {% assign item_url = item | prepend:"/tutorials/" | append:"/" %}
70+ {% assign p = site.tutorials | where:"url", item_url | first %}
71+ < a href ="{{p.permalink}} "> < strong > {{p.title}}</ strong > </ a >
72+ {% endif %}
73+ {% endfor %}
74+ {% endfor %}
75+ {% else %}
76+ < strong > None</ strong >
77+ {% endif %} </ h6 > </ td >
78+ </ tr >
79+ {% if page.follows2 %}
80+ < tr >
81+ < td > < h6 id ="solver-follows2 "> </ h6 > </ td >
82+ < td > < h6 >
83+ {% for section in site.data.tutorials %}
84+ {% for item in section.tutorials %}
85+ {% if item == page.follows2 %}
86+ {% assign item_url = item | prepend:"/tutorials/" | append:"/" %}
87+ {% assign p = site.tutorials | where:"url", item_url | first %}
88+ < a href ="{{p.permalink}} "> < strong > {{p.title}}</ strong > </ a >
89+ {% endif %}
90+ {% endfor %}
91+ {% endfor %}
92+ </ tr >
93+ {% endif %}
94+ < tr >
95+ < td > < h6 id ="solver-elasticity "> Complexity:</ h6 > </ td >
96+ < td > < h6 > {% if page.complexity == "basic" %}
97+ < span style ="color: green; "> < strong > Basic</ strong > </ span >
98+ {% elsif page.complexity == "intermediate" %}
99+ < span style ="color: orange; "> < strong > Intermediate</ strong > </ span >
100+ {% elsif page.complexity == "advanced" %}
101+ < span style ="color: red; "> < strong > Advanced</ strong > </ span >
102+ {% endif %}</ h6 > </ td >
103+ </ tr >
104+ </ tbody >
105+ </ table >
106+ </ div >
107+ {% endunless %}
108+
13109 < div id ="markdown-content-container "> {{ content }}</ div >
14110 < hr >
15111 {% unless page.disable_comments %}
@@ -23,7 +119,7 @@ <h1>{{ page.title }}</h1>
23119 this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
24120 this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
25121 };
26- */
122+ */
27123 ( function ( ) { // DON'T EDIT BELOW THIS LINE
28124 var d = document , s = d . createElement ( 'script' ) ;
29125 s . src = 'https://su2code-github-io.disqus.com/embed.js' ;
0 commit comments