|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +title: Explore Fortran Code |
| 4 | +description: |
| 5 | +--- |
| 6 | + |
| 7 | +{% include nav.html active='Home' %} |
| 8 | + |
| 9 | +<section class="masthead"> |
| 10 | + <h1>{{ page.title}}</h1> |
| 11 | + <h3>A rich ecosystem of high-performance code</h3> |
| 12 | +</section> |
| 13 | + |
| 14 | +<section class="front-section shaded"> |
| 15 | + <div class="container"> |
| 16 | + <h2>Fortran-lang organisation projects</h2> |
| 17 | + |
| 18 | + <div class="col-narrow"> |
| 19 | + <h3>Fortran Standard Library (stdlib)</h3> |
| 20 | + <p> |
| 21 | + A community-driven project for a <i>de facto</i> "standard" library for Fortran. |
| 22 | + The stdlib project is both a specification and a reference implementation, developed in |
| 23 | + cooperation with the Fortran Standards Committee. |
| 24 | + Find out more on |
| 25 | + <a href="https://github.com/fortran-lang/stdlib" target="_blank">GitHub</a>. |
| 26 | + </p> |
| 27 | + <img src="https://img.shields.io/github/stars/fortran-lang/stdlib?style=social"> |
| 28 | + <img src="https://img.shields.io/github/forks/fortran-lang/stdlib?style=social&label=Fork"> |
| 29 | + <img src="https://img.shields.io/github/last-commit/fortran-lang/stdlib?color=blue"> |
| 30 | + <img src="https://img.shields.io/github/issues/fortran-lang/stdlib"> |
| 31 | + |
| 32 | + </div> |
| 33 | + |
| 34 | + <div class="col-narrow"> |
| 35 | + <h3>Fortran Package Manager (fpm)</h3> |
| 36 | + <p> |
| 37 | + A prototype project to develop a common build system for Fortran packages |
| 38 | + and their dependencies. |
| 39 | + Find out more on |
| 40 | + <a href="https://github.com/fortran-lang/fpm" target="_blank">GitHub</a>. |
| 41 | + </p> |
| 42 | + <img src="https://img.shields.io/github/stars/fortran-lang/fpm?style=social"> |
| 43 | + <img src="https://img.shields.io/github/forks/fortran-lang/fpm?style=social&label=Fork"> |
| 44 | + <img src="https://img.shields.io/github/last-commit/fortran-lang/fpm?color=blue"> |
| 45 | + <img src="https://img.shields.io/github/issues/fortran-lang/fpm"> |
| 46 | + </div> |
| 47 | + |
| 48 | + </div> |
| 49 | + </section> |
| 50 | + |
| 51 | +<section class="front-section"> |
| 52 | + <div class="container"> |
| 53 | + <h1>Featured community projects</h1> |
| 54 | + |
| 55 | + <form action="/explore/search" method="get"> |
| 56 | + <input type="text" name="query" class="search-box" placeholder="Search for a project"> |
| 57 | + <input type="submit" value="Search" class="search-btn"> |
| 58 | + </form> |
| 59 | + |
| 60 | + <h2>Browse by category</h2> |
| 61 | + <div class="container-flex"> |
| 62 | + |
| 63 | + {% for sitePage in site.pages %} |
| 64 | + |
| 65 | + {% if sitePage.code_category %} |
| 66 | + {% if sitePage.code_category != 'preview' %} |
| 67 | + <div class="col-flex"> |
| 68 | + <a href="{{ sitePage.url }}" ><h3>{{ sitePage.title }} |
| 69 | + {% assign catProjects = site.data.curated_projects | where_exp:"project", "project.categories contains sitePage.code_category"%} |
| 70 | + ({{ catProjects | size }}) |
| 71 | + </h3></a> |
| 72 | + <p> {{ sitePage.description }} </p> |
| 73 | + </div> |
| 74 | + {% endif %} |
| 75 | + {% endif %} |
| 76 | + |
| 77 | + {% endfor%} |
| 78 | + </div> |
| 79 | + </div> |
| 80 | +</section> |
| 81 | + |
| 82 | +<section class="front-section shaded"> |
| 83 | + <div class="container"> |
| 84 | + <div class="col-wide"> |
| 85 | + |
| 86 | + Want your project listed or see a problem? Submit an issue |
| 87 | + <a href="https://github.com/fortran-lang/fortran-lang.github.io/issues">here</a>. |
| 88 | + |
| 89 | + </div> |
| 90 | +</section> |
| 91 | + |
0 commit comments