|
1 | 1 | <!doctype html> |
2 | 2 | <!-- |
3 | | -Copyright (C) 2019-2020 The Software Heritage developers |
| 3 | +Copyright (C) 2019-2025 The Software Heritage developers |
4 | 4 | See the AUTHORS file at the top-level directory of this distribution |
5 | 5 | License: GNU Affero General Public License version 3, or any later version |
6 | 6 | See top-level LICENSE file for more information |
7 | 7 | --> |
8 | 8 | <html lang="en"> |
9 | 9 | <head> |
10 | 10 | <meta charset="utf-8"> |
| 11 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 12 | + <meta name="description" content="CodeMeta Generator — interactive tool to create CodeMeta linked data metadata for software. You can easily declare the authorship, license, and link to other research outputs (publications, data, etc.)."> |
| 13 | + <meta name="keywords" content="CodeMeta, software metadata, software citation, linked data, license, JSON, JSON-LD, codemeta, metadata generator"> |
| 14 | + <meta name="author" content="Software Heritage"> |
| 15 | + |
| 16 | + <!-- Open Graph --> |
| 17 | + <meta property="og:title" content="CodeMeta Generator"> |
| 18 | + <meta property="og:description" content="Interactive tool to create CodeMeta linked data metadata for software."> |
| 19 | + <meta property="og:url" content="https://codemeta.github.io/codemeta-generator/"> |
| 20 | + <meta property="og:type" content="website"> |
| 21 | + <!-- Twitter / X --> |
| 22 | + <meta name="twitter:card" content="summary"> |
| 23 | + <meta name="twitter:title" content="CodeMeta Generator"> |
| 24 | + <meta name="twitter:description" content="Interactive tool to create CodeMeta linked data metadata for software."> |
| 25 | + |
11 | 26 | <title>CodeMeta Generator</title> |
12 | 27 | <script src="./js/utils.js"></script> |
13 | 28 | <script src="./js/fields_data.js"></script> |
|
16 | 31 | <script src="./js/validation/primitives.js"></script> |
17 | 32 | <script src="./js/validation/things.js"></script> |
18 | 33 | <script src="./js/validation/index.js"></script> |
| 34 | + <link rel="canonical" href="https://codemeta.github.io/codemeta-generator/"> |
19 | 35 | <link rel="stylesheet" type="text/css" href="./main.css"> |
20 | 36 | <link rel="stylesheet" type="text/css" href="./codemeta.css"> |
| 37 | + |
| 38 | + <!-- Structured data for rich results on search engines --> |
| 39 | + <!-- https://search.google.com/test/rich-results --> |
| 40 | + <script type="application/ld+json"> |
| 41 | + { |
| 42 | + "@context": "https://schema.org", |
| 43 | + "@type": "SoftwareApplication", |
| 44 | + "name": "CodeMeta Generator", |
| 45 | + "url": "https://codemeta.github.io/codemeta-generator/", |
| 46 | + "codeRepository": "https://github.com/codemeta/codemeta-generator", |
| 47 | + "description": "Interactive tool to create CodeMeta linked data metadata for software.", |
| 48 | + "applicationCategory": "DeveloperTool", |
| 49 | + "operatingSystem": "Any", |
| 50 | + "runtimePlatform": "Web browser", |
| 51 | + "programmingLanguage": "JavaScript", |
| 52 | + "author": { |
| 53 | + "@type": "Organization", |
| 54 | + "name": "Software Heritage", |
| 55 | + "url": "https://www.softwareheritage.org/" |
| 56 | + }, |
| 57 | + "license": "https://spdx.org/licenses/AGPL-3.0-only", |
| 58 | + "dateCreated": "2019-10-02", |
| 59 | + "softwareVersion": "3.0" |
| 60 | + } |
| 61 | + </script> |
21 | 62 | </head> |
22 | 63 | <body> |
23 | 64 | <header> |
|
0 commit comments