Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.toml « exampleSite - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9d17b0b6a1330cc6ee3628db4e2958a53ab0557 (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# Site settings
baseurl = "http://replace-this-with-your-hugo-site.com/"
languageCode = "en-us"
title = "Grid Side"
theme = "grid-side"
copyright = "Copyright © by Your Name"

# The theme uses pagination for post, gallery, and project listings.
#paginate = 12

# The theme supports disqus, which will appear only on deployed sites,
# not locally when run with `hugo server`; as with standard Hugo disqus,
# you can specify disqus_identifier, disqus_title, and disqus_url in the
# front matter of specific content.
#disqusShortname = "yourDisqusShortname"

# The theme supports menus with up to one submenu per menu item
# The menu name must be "Main"
SectionPagesMenu = "Main"

[Params]
    # When set to true, will use infinite scrolling to load paginated content
    # for posts, galleries, and projects
    infinite_scroll = true

    # 
    # The post, project, and gallery sections can have infinite scroll turned
    # on/off individually. These values override the infinte_scroll option
    # above.
    #
    #[Params.Post]
    #
    #   infinite_scroll = false
    #
    #[Params.Project]
    #
    #   infinite_scroll = false
    #
    #[Params.Gallery]
    #
    #   infinite_scroll = false

    #
    # Optionally specify the style for highlight.js to enable it, otherwise
    # you can use Pygments on the server side.
    #
    [Params.Highlight]

        style = "railscasts"

    #
    # Contains the main grid cell of your site (such as a picture of yourself)
    # along with your name, description, and email. Any empty field will
    # not be included. Not providing an image will use a color. Not specifying
    # the Header results in this cell not appearing in the site.
    #
    [Params.Header]

        # This is optional
        name = "Your Name"

        # This is optional
        description = "Your Description"

        # This is optional
        email = "your@email.com"

        # Not providing this results in a color being used
        image = "/img/banner.jpg"

        # This uses the CSS background-position, given the image above is set,
        # useful when you want to adjust where the background-image lands
        #image_position = "top"

        # This must be provided if the image above is not
        #color = "#FFF"

    #
    # Contains the footer of your main page and will also append items to
    # the end of your sidebar in non-homepage pages.
    #
    [Params.Footer]

        #
        # Represents the list of icons and associated links to use in your
        # footer and sidebar. Your copyright information will always be
        # shown in the footer.
        #
        # The icon class is a font awesome classname.
        #
        #   e.g. twitter == "fa fa-twitter"
        #
        [[Params.Footer.List]]

            icon_class = "twitter"
            icon_link = "#!"

        [[Params.Footer.List]]

            icon_class = "linkedin"
            icon_link = "#!"

        [[Params.Footer.List]]

            icon_class = "google-plus"
            icon_link = "#!"

        [[Params.Footer.List]]

            icon_class = "github"
            icon_link = "#!"

    #
    # Contains the Cells representing the sections of your website. Each cell
    # contains the name of the cell, an image depicting what the content
    # represents, and a link to use when the cell is clicked. 
    #
    # Not providing an image will use the color specified by 'color' as the
    # background color (default to #FFF).
    #
    # You can embed an icon using 'icon' to specify the classes to use
    # for the icon (such as 'fa fa-flag' when using font awesome).
    #
    # By default, each cell has a grid size of 1/3 (4 out of 12) for large
    # screens, 1/2 (6 out of 12) for medium screens, and 1 (12 out of 12) for
    # small screens. To change the cell's size per screen, use the properties
    # 'cell_large', 'cell_medium', and 'cell_small' respectively with a number
    # ranging from 1 to 12. Make sure that Cells have nubmers equalling 12
    # per row.
    #
    [Params.Cells]

        [[Params.Cells.List]]

            # The name to use with the cell, shows up on hover
            name = "Posts"

            # The link to associate with the cell, used when clicked
            link = "/post/"

            # The image to use as a background-image for the cell
            image = "/img/car.jpg"

            # This uses the CSS background-position, given the image above is
            # set, useful when you want to adjust where the background-image
            # lands
            #image_position = "top"

            # The color to use as a fallback if an image is not provided
            #color = "blue"

            # Grays out the image (if provided), the image will be restored
            # to normal color on hover
            #grayscale = true

            # Disables the normal cell highlight on hover
            #no_highlight = true
            
            # Normally, a cell only shows text (its name) on hover, setting
            # this to true results in the cell always showing its text
            # and also using a dark overlay to make the white text be more
            # visible
            #always_show_text = true

            # Grays out the cell and disables click functionality on it
            #disable = true

        [[Params.Cells.List]]

            name = "Gallery"
            link = "/gallery/"
            image = "/img/cup.jpg"

        [[Params.Cells.List]]

            name = "Projects"
            link = "/project/"
            image = "/img/drone.jpg"

        [[Params.Cells.List]]

            name = "Custom Post Section Name"
            link = "/custompost/"
            image = "/img/food.jpg"

        [[Params.Cells.List]]

            name = "Custom Gallery Section Name"
            link = "/customgallery/"
            image = "/img/jars.jpg"

        [[Params.Cells.List]]

            name = "Custom Project Section Name"
            link = "/customproject/"
            image = "/img/phone.jpg"