blob: 9c8c2e0dd58c5f284f8d36e06ada824ea4e9fb39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<template lang="pug">
header
b-container
h1
a(href="/" rel="home") Gico
b-form(action="/search")
b-form-group
b-input(placeholder="Search a commit" name="q")
b-form-group
b-button(variant="primary" type="submit") Go
</template>
<script>
export default {
name: "HeaderBlue",
}
</script>
|