1+ ---
2+ layout: default
3+ ---
4+
5+ {% include nav.html %}
6+
7+ < section class ="masthead ">
8+ < h1 > Explore Community Fortran Projects</ h1 >
9+ < h3 > A rich ecosystem of high-performance code</ h3 >
10+ </ section >
11+
12+ < section class ="front-section ">
13+ < div class ="container ">
14+ < div class ="col-wide ">
15+
16+ < a href ='/explore '> < Back </ a >
17+
18+ < h1 > {{page.title}}</ h1 >
19+ < p >
20+ {{page.description}}
21+ </ p >
22+
23+ < table class ="projects-table ">
24+
25+ {% assign catProjects = site.data.curated_projects | where_exp:"project", "project.categories contains page.code_category"%}
26+ {% for project in catProjects %}
27+ < tr >
28+ {% if project.github %}
29+ < td > < h4 > < a href ="https://github.com/{{ project.github }} "> {{ project.name }}</ a > </ h4 > </ td >
30+ < td > {% if project.version %}
31+ {% if project.version != 'none' %}
32+ < img src ="https://img.shields.io/badge/Version-{{ project.version | replace: " ", "%20" | replace: "-", "--" }}-green.svg">
33+ {% endif%}
34+ {% else %}
35+ < img src ="https://img.shields.io/github/v/release/{{ project.github }}?color=green ">
36+ {% endif %}</ td >
37+ < td > {% if project.license %}
38+ {% if project.license != 'none' %}
39+ < img src ="https://img.shields.io/badge/License-{{ project.license | replace: " ", "%20" | replace: "-", "--" }}-green">
40+ {% endif%}
41+ {% else %}
42+ < img src ="https://img.shields.io/github/license/{{ project.github }} ">
43+ {% endif %}</ td >
44+ < td > < img src ="https://img.shields.io/github/stars/{{ project.github }}?style=social "> </ td >
45+ < td > < img src ="https://img.shields.io/github/forks/{{ project.github }}?style=social&label=Fork "> </ td >
46+ < td > < img src ="https://img.shields.io/github/last-commit/{{ project.github }}?color=blue "> </ td >
47+ < td > < img src ="https://img.shields.io/github/issues/{{ project.github }} "> </ td >
48+ {% else %}
49+ < td > < h4 > < a href ="{{ project.url }} "> {{ project.name }}</ a > </ h4 > </ td >
50+ < td > {% if project.version %}
51+ < img src ="https://img.shields.io/badge/Version-{{ project.version | replace: " ", "%20" | replace: "-", "--" }}-green.svg">
52+ {% endif %}
53+ </ td >
54+ < td > {% if project.license %}
55+ < img src ="https://img.shields.io/badge/License-{{ project.license | replace: " ", "%20" | replace: "-", "--" }}-green">
56+ {% endif %}
57+ </ td >
58+ < td > </ td >
59+ < td > </ td >
60+ < td > </ td >
61+ < td > </ td >
62+ {% endif %}
63+ </ tr >
64+ < tr > < td colspan ="7 " class ="light ">
65+ {{ project.description }}
66+ </ td > </ tr >
67+ < tr > < td colspan ="7 " class ="light small ">
68+ < b > Tags: </ b > {{ project.tags }}
69+ </ td > </ tr >
70+ < tr > < td colspan ="7 "> </ td > </ tr >
71+ {% endfor %}
72+
73+ </ table >
74+
75+ </ div >
76+
77+ </ div >
78+ </ section >
79+
80+ < section class ="front-section shaded ">
81+ < div class ="container ">
82+ < div class ="col-wide ">
83+ <!-- <h2 id="faqs">FAQ</h2> -->
84+
85+ Want your project listed or see a problem? Submit an issue
86+ < a href ="https://github.com/fortran-lang/fortran-lang.github.io/issues "> here</ a > .
87+
88+ </ div >
89+ </ section >
90+
0 commit comments