Skip to content

Commit 0d05ac2

Browse files
authored
Merge pull request #3437 from CVEProject/int
INT -> DEV update
2 parents 8061c4a + 989533e commit 0d05ac2

30 files changed

+2412
-713
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on:
2+
issues:
3+
types: [opened]
4+
jobs:
5+
createCard:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Add New Issues to Backlog Board
9+
uses: peter-evans/create-or-update-project-card@866533e2ae61f13c35fd1d374049713fab43c729 # current tag: v2
10+
with:
11+
project-name: Backlog Board
12+
column-name: New Issues (Need to be Triaged)

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
77
<link rel="icon" type="image/x-icon" href="/cvePurpleVFavicon.svg">
8-
<title>CVE Website</title>
8+
<link rel="canonical" href="https://cve.org">
99
<script src="https://cmp.osano.com/AzyhULTdPkqmy4aDN/46057d56-0263-4cca-abac-9adddada4f3b/osano.js"></script>
1010
</head>
1111
<body class="has-navbar-fixed-top">
12+
<h1 hidden>Common vulnerabilities and Exposures (CVE)</h1>
1213
<noscript>
1314
<strong>We're sorry but the CVE Website doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
1415
</noscript>

package-lock.json

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@
2121
"@fortawesome/free-regular-svg-icons": "^6.5.1",
2222
"@fortawesome/free-solid-svg-icons": "^6.5.1",
2323
"@fortawesome/vue-fontawesome": "^3.0.5",
24+
"@unhead/vue": "^1.11.18",
2425
"axios": "^1.6.5",
2526
"bulma": "^0.9.4",
2627
"bulma-timeline": "^3.0.5",
28+
"leaflet": "^1.9.4",
2729
"lodash": "^4.17.21",
2830
"node-sass": "^9.0.0",
2931
"pinia": "^2.1.7",
@@ -50,4 +52,4 @@
5052
"vite": "^5.0.10",
5153
"vue-tsc": "^1.8.25"
5254
}
53-
}
55+
}
771 KB
Loading

public/robots.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
User-agent: *
2+
Disallow: /*.pdf$
3+
Disallow: /*.jpg$
4+
Disallow: /*.png$
5+
Disallow: /*.svg$
6+
Disallow: /*.css$
7+
Disallow: /images/
8+
Disallow: /Resources/

src/App.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import NotificationBannerModule from './components/NotificationBannerModule.vue'
2020
import FoooterModule from './components/FooterModule.vue';
2121
import NotFound from './views/NotFound.vue';
2222
import { usePartnerStore } from '@/stores/partners';
23+
import { useSeoMeta } from '@unhead/vue';
2324
2425
export default {
2526
components: {
@@ -35,6 +36,12 @@ export default {
3536
},
3637
beforeMount() {
3738
usePartnerStore().populatePartnerShortLongNameMap();
39+
useSeoMeta({
40+
title: 'CVE: Common Vulnerabilities and Exposures',
41+
description: 'At cve.org, we provide the authoritative '
42+
+ 'reference method for publicly known information-security '
43+
+ 'vulnerabilities and exposures'
44+
});
3845
}
3946
}
4047
</script>

0 commit comments

Comments
 (0)