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+ < div id ="markdown-content-container ">
36+ < h6 id ="at-one-glance "> < strong > At one glance</ strong > </ h6 >
37+ < h6 id ="solver-elasticity "> Solver: < code style ="text-transform: uppercase; " class ="language-plaintext highlighter-rouge "> {{ page.solver }}</ code > </ h6 >
38+ < h6 id ="requires-su2_cfd "> Uses: < code style ="text-transform: uppercase; " class ="language-plaintext highlighter-rouge "> {{ page.requires }}</ code > </ h6 >
39+ < h6 id ="follows-linear-elasticity "> Prerequisites:
40+ {% if page.follows %}
41+ {% for section in site.data.tutorials %}
42+ {% for item in section.tutorials %}
43+ {% if item == page.follows %}
44+ {% assign item_url = item | prepend:"/tutorials/" | append:"/" %}
45+ {% assign p = site.tutorials | where:"url", item_url | first %}
46+ < a href ="{{p.permalink}} "> < strong > {{p.title}}</ strong > </ a >
47+ {% endif %}
48+ {% endfor %}
49+ {% endfor %}
50+ {% else %}
51+ < strong > None</ strong >
52+ {% endif %}
53+ </ h6 >
54+ < h6 id ="complexity-basic ">
55+ Complexity:
56+ {% if page.complexity == "basic" %}
57+ < span style ="color: green; "> < strong > Basic</ strong > </ span >
58+ {% elsif page.complexity == "advanced" %}
59+ < span style ="color: orange; "> < strong > Advanced</ strong > </ span >
60+ {% endif %}
61+ </ h6 >
62+ </ div >
1363 < div id ="markdown-content-container "> {{ content }}</ div >
1464 < hr >
1565 {% unless page.disable_comments %}
@@ -23,7 +73,7 @@ <h1>{{ page.title }}</h1>
2373 this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
2474 this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
2575 };
26- */
76+ */
2777 ( function ( ) { // DON'T EDIT BELOW THIS LINE
2878 var d = document , s = d . createElement ( 'script' ) ;
2979 s . src = 'https://su2code-github-io.disqus.com/embed.js' ;
0 commit comments