mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Regis Philibert
02.22.2021 c7b9901e01ec3720b47fcef3d33bdbd6ce53f000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{{/*
  GetBuiltInServicesData
  Returns a map whose keys stores the map of defaults data for any built-in service. 
  We use a key to easily grab the data with `index $that github`
 
  @author @regisphilibert
 
  @context Any (.)
 
  @access public
 
  @returns Map
 
 
  ## Contributors can add a built-in service
 
  1. Adding it to the following map with the following format:
  ```yaml
  # [...]
  shinyandnew:
    label: Shiny And New
    color: '#cccccc'
  ```
  2. Edit README file with new service https://github.com/theNewDynamic/gohugo-theme-ananke/tree/422-improve-socials#built-in-services
 
*/}}
{{ return (`
  facebook:
    share: true
    label: Facebook
    color: '#3b5998'
  twitter:
    share: true
    label: Twitter
    color: '#1da1f2'
  instagram:
    label: Instagram
    color: '#e1306c'
  youtube:
    label: YouTube
    color: '#cd201f'
  github:
    label: GitHub
    color: '#6cc644'
  gitlab:
    label: GitLab
    color: '#FC6D26'
  keybase:
    label: Keybase
    color: '#3d76ff'
  linkedin:
    share: true
    label: LinkedIn
    color: '#0077b5'
  medium:
    label: Medium
    color: '#0077b5'
  mastodon:
    label: Mastodon
    color: '#3088d4'
  slack:
    label: Slack
    color: '#E01E5A'
  stackoverflow:
    label: Stack Overflow
    color: '#f48024'
  rss:
    label: RSS
    color: '#ff6f1a'
  tiktok:
    label: TikTok
    color: '#fe2c55'
  ` | transform.Unmarshal) }}