Skip to content

Commit

Permalink
Create information page
Browse files Browse the repository at this point in the history
Create information.html to link to navigation bar to "About SMECS".
  • Loading branch information
Aidajafarbigloo authored Sep 17, 2024
1 parent 89ae131 commit 773928b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions meta_creator/templates/meta_creator/information.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{% extends 'base.html' %}

{% load static %}

{% block content %}


<div class="info-page">
<div class="info-header">
<h3>What is SMECS ?</h3>
</div>
<div class="info-content">
<p>Software Metadata Extraction and Curation Software or SMECS is a web application to extract and curate software metadata following the CodeMeta software metadata standard.</p>
<p>SMECS facilitates the extraction of software metadata from repositories on GitHub/GitLab. It offers a user-friendly graphical user interface for visualizing the retrieved metadata. This empowers Research Software Engineers (RSE) to curate the extracted metadata according to their requirements. Ultimately, SMECS delivers the curated metadata in JSON format, enhancing usability and accessibility.
</p>
<p>To get more information about this tool and to access the source code please visit <a href="https://github.com/NFDI4Energy/SMECS">SMECS GitHub</a></p>
</div>
<button class="TrySMECS" title="Enter a specific URL and extract metadata" onclick="window.location.href = '/'">Try SMECS</button>
</div>

{% endblock content %}

0 comments on commit 773928b

Please sign in to comment.