0
website/static/.keep
Normal file
10
website/static/_redirects
Normal file
@ -0,0 +1,10 @@
|
||||
/docs /docs/intro 301
|
||||
/docs/custom-authentication /docs/backends-overview 301
|
||||
/docs/authentication-backends /docs/backends-overview 301
|
||||
/docs/extending /docs/custom-widgets 301
|
||||
/docs/validation /docs/custom-widgets/#advanced-field-validation 301
|
||||
/docs/editorial-workflow /docs/configuration/#publish-mode 301
|
||||
/docs/test-drive /docs/start-with-a-template 301
|
||||
/docs/quick-start /docs/add-to-your-site 301
|
||||
/chat https://join.slack.com/t/simple-cms/shared_invite/zt-1gvgnf5yv-E4sR17YnEcOy6fLFH9m7bQ 301
|
||||
/docs/update-the-cms-version /docs/releases 301
|
262
website/static/admin/config.yml
Normal file
@ -0,0 +1,262 @@
|
||||
backend:
|
||||
name: github
|
||||
repo: SimpleCMS/simple-cms
|
||||
squash_merges: true
|
||||
open_authoring: true
|
||||
|
||||
local_backend: true
|
||||
|
||||
site_url: https://www.netlifycms.org
|
||||
|
||||
publish_mode: editorial_workflow
|
||||
|
||||
media_folder: website/static/img
|
||||
public_folder: /img
|
||||
|
||||
docs_collection: &docs_collection
|
||||
folder: website/content/docs
|
||||
create: true
|
||||
summary: '{{weight}} - {{title}}'
|
||||
preview_path: 'docs/{{slug}}'
|
||||
sortable_fields: ['weight', 'title', 'group']
|
||||
fields:
|
||||
- label: Section
|
||||
name: group
|
||||
widget: relation
|
||||
collection: settings
|
||||
file: docs_sections
|
||||
search_fields: ['menu.docs.*.name', 'menu.docs.*.title']
|
||||
display_fields: ['menu.docs.*.title']
|
||||
value_field: 'menu.docs.*.name'
|
||||
- { label: 'Order', name: weight, widget: number }
|
||||
- { label: Title, name: title }
|
||||
- { label: Body, name: body, widget: markdown }
|
||||
|
||||
word_list: &word_list
|
||||
fields:
|
||||
- label: Extends
|
||||
name: extends
|
||||
widget: hidden
|
||||
default: 'existence'
|
||||
- label: Output message
|
||||
name: message
|
||||
widget: string
|
||||
- label: Ignore Case
|
||||
name: ignorecase
|
||||
widget: boolean
|
||||
default: true
|
||||
required: false
|
||||
- label: Notification Level
|
||||
name: level
|
||||
widget: select
|
||||
default: suggestion
|
||||
options:
|
||||
- { label: 'Suggestion', value: 'suggestion' }
|
||||
- { label: 'Warning', value: 'warning' }
|
||||
- { label: 'Error', value: 'error' }
|
||||
- label: Entries
|
||||
name: tokens
|
||||
widget: list
|
||||
|
||||
collections:
|
||||
- label: Settings
|
||||
name: settings
|
||||
hide: true
|
||||
files:
|
||||
- label: Docs Sections
|
||||
name: docs_sections
|
||||
file: website/site.yml
|
||||
fields:
|
||||
- label: menu
|
||||
name: menu
|
||||
widget: object
|
||||
fields:
|
||||
- label: Sections
|
||||
label_singular: Section
|
||||
name: docs
|
||||
widget: list
|
||||
summary: '{{title}} ({{name}})'
|
||||
fields:
|
||||
- { label: 'Full Name', name: 'title', widget: 'string' }
|
||||
- { label: 'Summary Name', name: 'name', widget: 'string' }
|
||||
- label: Style & Usage Options
|
||||
name: linter
|
||||
hide: false
|
||||
files:
|
||||
- <<: *word_list
|
||||
label: Acronyms
|
||||
name: acronyms
|
||||
file: website/src/writing-guide/styles/Avoid/Acronyms.yml
|
||||
- <<: *word_list
|
||||
label: Adverbs
|
||||
name: adverbs
|
||||
file: website/src/writing-guide/styles/Avoid/Adverbs.yml
|
||||
- <<: *word_list
|
||||
label: Archaisms
|
||||
name: archaisms
|
||||
file: website/src/writing-guide/styles/Avoid/Archaisms.yml
|
||||
- <<: *word_list
|
||||
label: Cliches
|
||||
name: cliches
|
||||
file: website/src/writing-guide/styles/Avoid/Cliches.yml
|
||||
- <<: *word_list
|
||||
label: Hyperbole
|
||||
name: hyperbole
|
||||
file: website/src/writing-guide/styles/Avoid/Hyperbole.yml
|
||||
- <<: *word_list
|
||||
label: Indirect Language
|
||||
name: indirect
|
||||
file: website/src/writing-guide/styles/Avoid/Indirect.yml
|
||||
- <<: *word_list
|
||||
label: Jargon
|
||||
name: jargon
|
||||
file: website/src/writing-guide/styles/Avoid/Jargon.yml
|
||||
- <<: *word_list
|
||||
label: Passive
|
||||
name: passive
|
||||
file: website/src/writing-guide/styles/Avoid/Passive.yml
|
||||
- <<: *word_list
|
||||
label: Simplify
|
||||
name: simplify
|
||||
file: website/src/writing-guide/styles/Avoid/Simplify.yml
|
||||
|
||||
- <<: *docs_collection
|
||||
name: docs_intro
|
||||
label: 'Docs: Intro'
|
||||
filter:
|
||||
field: group
|
||||
value: Intro
|
||||
- <<: *docs_collection
|
||||
name: docs_accounts
|
||||
label: 'Docs: Account'
|
||||
filter:
|
||||
field: group
|
||||
value: Accounts
|
||||
- <<: *docs_collection
|
||||
name: docs_configuration
|
||||
label: 'Docs: Configuration'
|
||||
filter:
|
||||
field: group
|
||||
value: Configuration
|
||||
- <<: *docs_collection
|
||||
name: docs_media
|
||||
label: 'Docs: Media'
|
||||
filter:
|
||||
field: group
|
||||
value: Media
|
||||
- <<: *docs_collection
|
||||
name: docs_workflow
|
||||
label: 'Docs: Workflow'
|
||||
filter:
|
||||
field: group
|
||||
value: Workflow
|
||||
- <<: *docs_collection
|
||||
name: docs_collections
|
||||
label: 'Docs: Collections'
|
||||
filter:
|
||||
field: group
|
||||
value: Collections
|
||||
- <<: *docs_collection
|
||||
name: docs_fields
|
||||
label: 'Docs: Fields'
|
||||
filter:
|
||||
field: group
|
||||
value: Fields
|
||||
- <<: *docs_collection
|
||||
name: docs_guides
|
||||
label: 'Docs: Guides'
|
||||
filter:
|
||||
field: group
|
||||
value: Guides
|
||||
- <<: *docs_collection
|
||||
name: docs_customization
|
||||
label: 'Docs: Customization'
|
||||
filter:
|
||||
field: group
|
||||
value: Customization
|
||||
- <<: *docs_collection
|
||||
name: docs_contributing
|
||||
label: 'Docs: Contributing'
|
||||
filter:
|
||||
field: group
|
||||
value: Contributing
|
||||
- name: widget_docs
|
||||
label: 'Docs: Widgets'
|
||||
folder: website/content/docs/widgets
|
||||
preview_path: 'docs/widgets/{{title}}'
|
||||
create: true
|
||||
fields:
|
||||
- { label: Name, name: title }
|
||||
- { label: Label, name: label }
|
||||
- { label: Body, name: body, widget: markdown }
|
||||
- name: blog
|
||||
label: Blog
|
||||
label_singular: Post
|
||||
folder: website/content/blog
|
||||
preview_path: 'blog/{{year}}/{{month}}/{{title}}'
|
||||
create: true
|
||||
fields:
|
||||
- { label: Title, name: title }
|
||||
- { label: Author, name: author }
|
||||
- { label: Description (for blog list), name: description, widget: text }
|
||||
- {
|
||||
label: Meta Description (defaults to Description),
|
||||
name: meta_description,
|
||||
widget: text,
|
||||
required: false,
|
||||
}
|
||||
- { label: Twitter Image, name: twitter_image, widget: image }
|
||||
- { label: Date, name: date, widget: date }
|
||||
- { label: Body, name: body, widget: markdown }
|
||||
- name: community
|
||||
label: Community
|
||||
files:
|
||||
- name: community
|
||||
label: Community
|
||||
file: website/content/pages/community.md
|
||||
preview_path: community
|
||||
fields:
|
||||
- { label: Title, name: title }
|
||||
- { label: Headline, name: headline }
|
||||
- { label: Subheading, name: subhead }
|
||||
- label: Sections
|
||||
name: sections
|
||||
widget: list
|
||||
fields:
|
||||
- { name: title, label: Title }
|
||||
- name: channels
|
||||
label: Channels
|
||||
widget: list
|
||||
fields:
|
||||
- { name: title, label: Title }
|
||||
- { name: url, label: URL }
|
||||
- { name: description, label: Description }
|
||||
- name: updates
|
||||
label: Updates
|
||||
files:
|
||||
- name: releases
|
||||
label: Releases
|
||||
file: website/data/updates.yml
|
||||
fields:
|
||||
- name: updates
|
||||
label: Releases
|
||||
widget: list
|
||||
fields:
|
||||
- { name: version, label: Version }
|
||||
- { name: date, label: Date, widget: date }
|
||||
- { name: description, label: Description }
|
||||
- { name: url, label: Url, required: false }
|
||||
- name: notifications
|
||||
label: Notifications
|
||||
file: website/data/notifications.yml
|
||||
description: Site-top notifications - publish one at a time
|
||||
fields:
|
||||
- name: notifications
|
||||
label: Notifications
|
||||
widget: list
|
||||
fields:
|
||||
- { label: Title, name: title }
|
||||
- { label: Published, name: published, widget: boolean }
|
||||
- { label: Loud, name: loud, widget: boolean }
|
||||
- { label: Message, name: message, widget: text }
|
||||
- { label: URL, name: url }
|
5
website/static/img/11ty-logo.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg width="1570" height="2186" viewBox="0 0 1570 2186" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="1569.4" height="2186" fill="#222222"/>
|
||||
<path d="M562.2 1410.1C553.2 1410.1 548.7 1398.1 548.7 1374V778.9C548.7 767.4 546.4 762 541.7 762.7C513.3 769.9 499 773.5 498.6 773.5C490.7 774.2 486.8 766.3 486.8 749.8V698.1C486.8 683.8 491.1 675.7 499.7 673.9L641.9 637.3C643 637 644.6 636.8 646.7 636.8C654.6 636.8 658.5 645.2 658.5 662.1V1374.1C658.5 1398.2 653.8 1410.2 644.5 1410.2L562.2 1410.1V1410.1ZM930.5 1411.2C916.1 1411.2 903.7 1410.2 893.1 1408.2C882.5 1406.2 871.5 1401.7 860 1394.7C848.5 1387.7 839.1 1378.1 831.7 1365.9C824.3 1353.7 818.3 1336.6 813.7 1314.7C809.1 1292.8 806.7 1266.8 806.7 1236.6V960.4C806.7 953.2 804.7 949.6 800.8 949.6H767.4C758.4 949.6 753.9 941 753.9 923.8V894.7C753.9 877.1 758.4 868.3 767.4 868.3H800.8C804.7 868.3 806.7 863.5 806.7 853.8L816.4 644.3C817.5 625.3 822.1 615.8 830.4 615.8H884.3C893.3 615.8 897.8 625.3 897.8 644.3V853.8C897.8 863.5 899.9 868.3 904.3 868.3H973C982 868.3 986.5 877.1 986.5 894.7V923.8C986.5 941 982 949.6 973 949.6H904.1C901.6 949.6 899.9 950.2 899 951.5C898.1 952.7 897.7 955.7 897.7 960.4V1238.3C897.7 1259.1 899 1276.5 901.7 1290.3C904.4 1304.1 908.3 1314.3 913.5 1320.7C918.7 1327.1 923.9 1331.5 929.1 1333.6C934.3 1335.8 940.7 1336.8 948.2 1336.8H986.4C996.1 1336.8 1000.9 1343.5 1000.9 1356.7V1389C1000.9 1403.7 995.7 1411.1 985.3 1411.1L930.5 1411.2V1411.2ZM1137.2 1475.8C1145.4 1475.8 1152.6 1469.1 1158.7 1455.6C1164.8 1442.1 1167.9 1423 1167.9 1398.2C1167.9 1392.4 1164.3 1372.5 1157.1 1338.4L1051.5 899.5C1050.8 894.5 1050.4 890.5 1050.4 887.6C1050.4 874.7 1053.1 868.2 1058.5 868.2H1123.7C1128.7 868.2 1132.8 869.9 1136.1 873.3C1139.4 876.7 1141.9 883.6 1143.6 894L1213.6 1264.5C1215 1268.8 1215.9 1271 1216.3 1271C1217.7 1271 1218.5 1269 1218.5 1265.1L1273.4 895.6C1274.8 884.8 1277.1 877.6 1280.1 873.8C1283.1 870 1287 868.1 1291.7 868.1H1336.9C1343 868.1 1346.1 875.1 1346.1 889.1C1346.1 892.3 1345.7 896.5 1345 901.5L1249.1 1400.8C1241.6 1442.1 1233.3 1473.7 1224.3 1495.6C1215.3 1517.5 1205.3 1532.4 1194.1 1540.3C1183 1548.2 1168.3 1552.3 1149.9 1552.7H1144.5C1115.4 1552.7 1095.7 1545 1085.3 1529.5C1082.4 1526.3 1081 1518 1081 1504.7C1081 1478.1 1085.3 1464.8 1093.9 1464.8C1094.6 1464.8 1101.1 1466.6 1113.3 1470.2C1125.7 1474 1133.6 1475.8 1137.2 1475.8V1475.8Z" fill="white" stroke="white" stroke-width="28" stroke-miterlimit="10"/>
|
||||
<path d="M291.2 1411.1C282.2 1411.1 277.7 1399.1 277.7 1375V779.9C277.7 768.4 275.4 763 270.7 763.7C242.3 770.9 228 774.5 227.6 774.5C219.7 775.2 215.8 767.3 215.8 750.8V699.1C215.8 684.8 220.1 676.7 228.7 674.9L371 638.2C372.1 637.9 373.7 637.7 375.8 637.7C383.7 637.7 387.6 646.1 387.6 663V1375C387.6 1399.1 382.9 1411.1 373.6 1411.1H291.2V1411.1Z" fill="white" stroke="white" stroke-width="28" stroke-miterlimit="10"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
BIN
website/static/img/cloudinary-console-details.png
Normal file
After Width: | Height: | Size: 165 KiB |
BIN
website/static/img/create-password.png
Normal file
After Width: | Height: | Size: 356 KiB |
BIN
website/static/img/email-subject.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
website/static/img/favicon/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 30 KiB |
9
website/static/img/favicon/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="mstile-150x150.png"/>
|
||||
<TileColor>#222222</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
website/static/img/favicon/favicon-16x16.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
website/static/img/favicon/favicon-32x32.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
website/static/img/favicon/favicon.ico
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
website/static/img/favicon/icon-512x512.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
website/static/img/favicon/mstile-144x144.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
website/static/img/favicon/mstile-150x150.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
website/static/img/favicon/mstile-310x150.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
website/static/img/favicon/mstile-310x310.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
website/static/img/favicon/mstile-70x70.png
Normal file
After Width: | Height: | Size: 21 KiB |
490
website/static/img/favicon/safari-pinned-tab.svg
Normal file
@ -0,0 +1,490 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="16.000000pt" height="16.000000pt" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
|
||||
<path fill="#FAFBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M273.000000,513.000000
|
||||
C262.312439,513.000000 251.624878,513.000000 240.806046,512.658203
|
||||
C239.864731,511.879791 239.081558,511.129883 238.240250,511.057739
|
||||
C233.005615,510.608856 227.608139,510.981781 222.540558,509.848450
|
||||
C200.663864,504.955994 178.788437,500.395721 157.948013,491.329254
|
||||
C142.481522,484.600677 127.909546,476.594269 114.007774,467.355255
|
||||
C97.713074,456.525970 82.599236,443.955475 70.010788,428.974030
|
||||
C58.935104,415.792908 48.523708,401.896698 39.238811,387.406494
|
||||
C27.008471,368.319550 18.923077,347.351135 12.794065,325.345978
|
||||
C6.565468,302.983276 3.436305,280.421600 3.191497,257.444275
|
||||
C3.066286,245.692123 4.219725,233.787094 6.183747,222.186234
|
||||
C8.790812,206.787109 12.337407,191.507858 16.316067,176.397156
|
||||
C18.222874,169.155212 21.986443,162.390930 25.021103,155.459366
|
||||
C32.788944,137.716553 42.404163,120.985435 54.096718,105.584526
|
||||
C62.759315,94.174538 71.552628,82.795517 82.795448,73.592857
|
||||
C88.614708,68.829582 93.275871,62.451496 99.512856,58.439198
|
||||
C113.450180,49.473194 126.053047,38.342442 141.588943,31.912235
|
||||
C157.570877,25.297422 173.421906,18.343536 189.570312,12.165596
|
||||
C195.586487,9.863971 202.226868,8.879955 208.679886,8.103672
|
||||
C219.904449,6.753377 231.190323,5.486997 242.476837,5.191686
|
||||
C254.876129,4.867260 267.303619,5.802935 279.721741,5.958652
|
||||
C290.216156,6.090248 300.427765,7.573284 310.736816,9.694113
|
||||
C318.594116,11.310555 326.225006,13.199921 333.707245,15.974569
|
||||
C339.246887,18.028854 344.980194,19.602589 350.408234,21.906389
|
||||
C358.560974,25.366606 366.798523,28.786247 374.500519,33.112411
|
||||
C386.387115,39.789085 398.467560,46.397858 409.322205,54.556885
|
||||
C420.286804,62.798580 430.355438,72.415031 439.889343,82.321594
|
||||
C448.055328,90.806702 454.679169,100.753563 462.410004,109.686150
|
||||
C470.072632,118.539970 476.022003,128.406265 480.966553,138.893707
|
||||
C486.711884,151.079651 492.328674,163.341049 497.486603,175.783035
|
||||
C500.221375,182.379837 502.148621,189.357101 503.903992,196.298279
|
||||
C505.094666,201.006668 505.450470,205.939621 506.009033,210.791779
|
||||
C507.393341,222.816925 509.614990,234.840591 509.779541,246.888336
|
||||
C510.008606,263.659241 508.771912,280.456787 507.934113,297.231506
|
||||
C507.691376,302.092133 506.949097,306.975128 505.915344,311.734833
|
||||
C504.981079,316.036530 503.264923,320.163055 502.027679,324.405945
|
||||
C501.063843,327.711212 500.597351,331.185120 499.401154,334.394470
|
||||
C496.053802,343.375336 492.868958,352.456604 488.825989,361.128021
|
||||
C483.948273,371.589935 478.903595,382.083099 472.737488,391.805634
|
||||
C466.093323,402.282013 458.320465,412.083038 450.586945,421.818817
|
||||
C438.454651,437.092194 424.187714,450.333893 408.427765,461.687469
|
||||
C396.990143,469.927155 384.721100,477.123047 372.343628,483.910583
|
||||
C363.592285,488.709595 354.163055,492.372131 344.804291,495.931763
|
||||
C337.493378,498.712463 329.887299,500.793732 322.300629,502.753052
|
||||
C313.272095,505.084808 304.177582,507.246155 295.009644,508.923859
|
||||
C288.580811,510.100311 281.973175,510.278290 275.467316,511.080414
|
||||
C274.579468,511.189880 273.819305,512.334595 273.000000,513.000000
|
||||
M450.917480,338.346497
|
||||
C465.286865,303.376251 469.577179,267.169037 464.331970,229.767426
|
||||
C463.946350,227.017593 463.998260,224.286133 460.192719,224.201859
|
||||
C454.321106,224.071854 447.524933,227.278381 447.128632,230.399902
|
||||
C447.107880,230.563492 447.115845,230.734665 447.136658,230.899002
|
||||
C447.554871,234.204834 445.608337,234.800385 442.885895,234.797241
|
||||
C427.388763,234.779297 411.890930,234.754471 396.394745,234.889679
|
||||
C392.568268,234.923065 392.019165,232.767090 392.027313,229.774948
|
||||
C392.055481,219.443512 392.061310,209.111984 392.044189,198.780533
|
||||
C392.041229,197.000549 391.885010,195.220825 391.788605,193.212769
|
||||
C390.072113,193.103439 388.781738,192.949921 387.491333,192.949799
|
||||
C369.494598,192.947937 351.479767,192.492828 333.508728,193.179306
|
||||
C324.397095,193.527359 317.288208,192.272400 313.870483,182.804520
|
||||
C313.604889,182.068878 312.880127,181.478806 312.310150,180.876602
|
||||
C309.460480,177.865936 309.711121,175.315338 312.775818,172.372147
|
||||
C321.307800,164.178436 329.485596,155.614639 338.058411,147.465454
|
||||
C341.109924,144.564758 342.296600,141.504120 342.241119,137.378723
|
||||
C342.046082,122.883583 342.092224,108.384850 342.101593,93.887505
|
||||
C342.104767,88.989594 343.395844,88.151115 347.751068,90.479347
|
||||
C364.258881,99.304161 379.713989,109.747330 392.892731,123.056618
|
||||
C408.527557,138.846329 421.927765,156.353012 431.059509,176.881348
|
||||
C433.145294,181.570221 434.928406,186.051514 434.030548,191.214355
|
||||
C432.845734,198.027252 436.163879,202.782516 441.236938,206.555969
|
||||
C445.784119,209.938278 450.984009,209.744156 455.997772,207.959106
|
||||
C461.504852,205.998428 465.443237,202.244858 466.115662,196.097626
|
||||
C467.337158,184.931030 463.322083,179.438568 452.468048,176.233322
|
||||
C450.432281,175.632156 448.255219,173.833603 447.171570,171.984894
|
||||
C443.230133,165.260864 439.962952,158.141129 436.011780,151.423370
|
||||
C423.295624,129.803436 406.589447,111.450470 387.059143,96.031120
|
||||
C364.532196,78.245934 339.162292,65.671783 311.136047,58.462051
|
||||
C279.594482,50.347992 247.943359,49.964745 216.246338,56.313419
|
||||
C194.436768,60.681713 174.104233,69.093567 154.741058,80.323914
|
||||
C129.623093,94.891960 109.252777,114.553635 91.865707,137.270294
|
||||
C76.263008,157.655655 66.055046,181.026917 59.159702,205.736771
|
||||
C54.350899,222.969391 53.056377,240.745819 52.237457,258.515594
|
||||
C51.989647,263.892761 53.080177,269.331635 53.613243,275.371765
|
||||
C59.020847,274.311401 63.954693,273.343933 68.107407,272.529633
|
||||
C69.092758,258.969788 69.569931,246.000427 71.087044,233.153885
|
||||
C72.963608,217.263626 76.860069,201.772766 83.417282,187.093811
|
||||
C84.036781,185.707001 86.191704,184.135223 87.646477,184.122665
|
||||
C110.474106,183.925720 133.304047,184.016464 156.132828,183.907822
|
||||
C159.284256,183.892822 160.120224,185.129471 160.072891,188.054428
|
||||
C159.943512,196.050781 160.025635,204.050873 160.058075,212.049332
|
||||
C160.064484,213.629196 160.223068,215.208420 160.325439,217.037064
|
||||
C170.099823,217.037064 179.258224,217.146744 188.411530,216.978531
|
||||
C191.687027,216.918320 193.283096,217.608582 193.189392,221.341476
|
||||
C192.976212,229.834152 193.038971,238.338974 193.223236,246.833786
|
||||
C193.294907,250.138916 192.095718,251.111267 188.862152,251.074615
|
||||
C175.699539,250.925430 162.534241,251.003769 149.369965,251.027008
|
||||
C147.440186,251.030426 145.510651,251.188965 143.155212,251.294876
|
||||
C143.155212,253.612808 143.154907,255.416779 143.155258,257.220764
|
||||
C143.158173,272.551361 143.051300,287.883362 143.241898,303.211609
|
||||
C143.289246,307.020081 142.332748,309.778076 139.365921,312.316040
|
||||
C125.716339,323.992462 112.245728,335.877899 98.669022,347.639954
|
||||
C97.186806,348.924072 95.434982,349.896942 93.420029,351.280792
|
||||
C92.348755,349.648529 91.284813,348.383575 90.610107,346.937042
|
||||
C87.870232,341.062897 85.341896,335.089111 82.554237,329.238464
|
||||
C80.571701,325.077606 79.983406,321.207520 82.835548,317.103790
|
||||
C86.376724,312.008606 86.438698,306.906189 83.321167,301.214813
|
||||
C79.836967,294.853973 74.774887,292.085175 67.921677,292.259583
|
||||
C60.959053,292.436829 56.614468,296.912567 53.770123,302.589508
|
||||
C51.115456,307.887848 53.073753,316.345734 57.882526,320.307770
|
||||
C62.913940,324.453278 65.462006,329.962219 67.654625,335.676910
|
||||
C76.446518,358.591553 89.086456,379.140381 105.649490,397.181030
|
||||
C120.663048,413.534027 137.402283,427.716919 156.866074,438.833466
|
||||
C173.352707,448.249634 190.621552,455.473022 208.919312,459.809845
|
||||
C230.289200,464.874786 252.090332,467.565704 274.118713,464.979584
|
||||
C286.948975,463.473297 299.969604,462.288849 312.419098,459.077515
|
||||
C353.148529,448.571442 387.219635,427.013977 415.077301,395.380676
|
||||
C429.987457,378.449677 441.597382,359.615356 450.917480,338.346497
|
||||
z"/>
|
||||
<path fill="#65C2E2" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M450.752441,338.694153
|
||||
C441.597382,359.615356 429.987457,378.449677 415.077301,395.380676
|
||||
C387.219635,427.013977 353.148529,448.571442 312.419098,459.077515
|
||||
C299.969604,462.288849 286.948975,463.473297 274.118713,464.979584
|
||||
C252.090332,467.565704 230.289200,464.874786 208.919312,459.809845
|
||||
C190.621552,455.473022 173.352707,448.249634 156.866074,438.833466
|
||||
C137.402283,427.716919 120.663048,413.534027 105.649490,397.181030
|
||||
C89.086456,379.140381 76.446518,358.591553 67.654625,335.676910
|
||||
C65.462006,329.962219 62.913940,324.453278 57.882526,320.307770
|
||||
C53.073753,316.345734 51.115456,307.887848 53.770123,302.589508
|
||||
C56.614468,296.912567 60.959053,292.436829 67.921677,292.259583
|
||||
C74.774887,292.085175 79.836967,294.853973 83.321167,301.214813
|
||||
C86.438698,306.906189 86.376724,312.008606 82.835548,317.103790
|
||||
C79.983406,321.207520 80.571701,325.077606 82.554237,329.238464
|
||||
C85.341896,335.089111 87.870232,341.062897 90.610107,346.937042
|
||||
C91.284813,348.383575 92.348755,349.648529 93.420029,351.280792
|
||||
C95.434982,349.896942 97.186806,348.924072 98.669022,347.639954
|
||||
C112.245728,335.877899 125.716339,323.992462 139.365921,312.316040
|
||||
C142.332748,309.778076 143.289246,307.020081 143.241898,303.211609
|
||||
C143.051300,287.883362 143.158173,272.551361 143.155258,257.220764
|
||||
C143.154907,255.416779 143.155212,253.612808 143.155212,251.294876
|
||||
C145.510651,251.188965 147.440186,251.030426 149.369965,251.027008
|
||||
C162.534241,251.003769 175.699539,250.925430 188.862152,251.074615
|
||||
C192.095718,251.111267 193.294907,250.138916 193.223236,246.833786
|
||||
C193.038971,238.338974 192.976212,229.834152 193.189392,221.341476
|
||||
C193.283096,217.608582 191.687027,216.918320 188.411530,216.978531
|
||||
C179.258224,217.146744 170.099823,217.037064 160.325439,217.037064
|
||||
C160.223068,215.208420 160.064484,213.629196 160.058075,212.049332
|
||||
C160.025635,204.050873 159.943512,196.050781 160.072891,188.054428
|
||||
C160.120224,185.129471 159.284256,183.892822 156.132828,183.907822
|
||||
C133.304047,184.016464 110.474106,183.925720 87.646477,184.122665
|
||||
C86.191704,184.135223 84.036781,185.707001 83.417282,187.093811
|
||||
C76.860069,201.772766 72.963608,217.263626 71.087044,233.153885
|
||||
C69.569931,246.000427 69.092758,258.969788 68.107407,272.529633
|
||||
C63.954693,273.343933 59.020847,274.311401 53.613243,275.371765
|
||||
C53.080177,269.331635 51.989647,263.892761 52.237457,258.515594
|
||||
C53.056377,240.745819 54.350899,222.969391 59.159702,205.736771
|
||||
C66.055046,181.026917 76.263008,157.655655 91.865707,137.270294
|
||||
C109.252777,114.553635 129.623093,94.891960 154.741058,80.323914
|
||||
C174.104233,69.093567 194.436768,60.681713 216.246338,56.313419
|
||||
C247.943359,49.964745 279.594482,50.347992 311.136047,58.462051
|
||||
C339.162292,65.671783 364.532196,78.245934 387.059143,96.031120
|
||||
C406.589447,111.450470 423.295624,129.803436 436.011780,151.423370
|
||||
C439.962952,158.141129 443.230133,165.260864 447.171570,171.984894
|
||||
C448.255219,173.833603 450.432281,175.632156 452.468048,176.233322
|
||||
C463.322083,179.438568 467.337158,184.931030 466.115662,196.097626
|
||||
C465.443237,202.244858 461.504852,205.998428 455.997772,207.959106
|
||||
C450.984009,209.744156 445.784119,209.938278 441.236938,206.555969
|
||||
C436.163879,202.782516 432.845734,198.027252 434.030548,191.214355
|
||||
C434.928406,186.051514 433.145294,181.570221 431.059509,176.881348
|
||||
C421.927765,156.353012 408.527557,138.846329 392.892731,123.056618
|
||||
C379.713989,109.747330 364.258881,99.304161 347.751068,90.479347
|
||||
C343.395844,88.151115 342.104767,88.989594 342.101593,93.887505
|
||||
C342.092224,108.384850 342.046082,122.883583 342.241119,137.378723
|
||||
C342.296600,141.504120 341.109924,144.564758 338.058411,147.465454
|
||||
C329.485596,155.614639 321.307800,164.178436 312.775818,172.372147
|
||||
C309.711121,175.315338 309.460480,177.865936 312.310150,180.876602
|
||||
C312.880127,181.478806 313.604889,182.068878 313.870483,182.804520
|
||||
C317.288208,192.272400 324.397095,193.527359 333.508728,193.179306
|
||||
C351.479767,192.492828 369.494598,192.947937 387.491333,192.949799
|
||||
C388.781738,192.949921 390.072113,193.103439 391.788605,193.212769
|
||||
C391.885010,195.220825 392.041229,197.000549 392.044189,198.780533
|
||||
C392.061310,209.111984 392.055481,219.443512 392.027313,229.774948
|
||||
C392.019165,232.767090 392.568268,234.923065 396.394745,234.889679
|
||||
C411.890930,234.754471 427.388763,234.779297 442.885895,234.797241
|
||||
C445.608337,234.800385 447.554871,234.204834 447.136658,230.899002
|
||||
C447.115845,230.734665 447.107880,230.563492 447.128632,230.399902
|
||||
C447.524933,227.278381 454.321106,224.071854 460.192719,224.201859
|
||||
C463.998260,224.286133 463.946350,227.017593 464.331970,229.767426
|
||||
C469.577179,267.169037 465.286865,303.376251 450.752441,338.694153
|
||||
M225.655106,150.966980
|
||||
C210.915375,150.950882 196.175201,150.991577 181.436295,150.873596
|
||||
C178.265579,150.848190 176.928101,151.928986 176.947220,155.186493
|
||||
C177.029083,169.139191 177.053436,183.093567 176.906357,197.045303
|
||||
C176.870544,200.444534 178.250748,201.246811 181.360901,201.218323
|
||||
C195.146912,201.092056 208.935364,201.216721 222.720657,201.055008
|
||||
C224.316223,201.036285 225.897507,199.800339 228.377426,198.950439
|
||||
C228.913422,198.044876 229.909546,197.142746 229.916321,196.233215
|
||||
C230.017319,182.678528 230.096024,169.120773 229.836411,155.570328
|
||||
C229.807465,154.059235 227.679901,152.588333 225.655106,150.966980
|
||||
M255.501282,449.138916
|
||||
C306.823975,450.275848 350.838013,432.270813 389.453461,398.333740
|
||||
C387.641937,396.400421 386.295532,394.740234 384.727905,393.325165
|
||||
C370.171692,380.185120 355.577026,367.087677 340.994751,353.976532
|
||||
C339.880371,352.974579 338.814850,351.914032 337.657410,350.965210
|
||||
C335.450745,349.156250 333.395508,348.696625 331.244446,351.286224
|
||||
C327.848083,355.375031 324.461700,359.516632 320.642487,363.190277
|
||||
C318.822510,364.940857 316.048492,366.609833 313.650452,366.692841
|
||||
C302.835999,367.067169 292.000854,366.927063 281.174500,366.828033
|
||||
C277.267944,366.792328 275.518616,368.174316 276.474701,372.235321
|
||||
C276.775848,373.514465 276.822449,374.870544 276.849701,376.194244
|
||||
C276.989441,382.987366 276.780731,383.190521 269.941620,383.187408
|
||||
C246.288132,383.176605 222.634628,383.160034 198.981140,383.145874
|
||||
C197.208405,383.144836 195.435684,383.145721 193.087387,383.145721
|
||||
C193.087387,375.706604 193.291138,368.909790 192.974106,362.137421
|
||||
C192.866760,359.844269 192.048386,357.027740 190.522293,355.447906
|
||||
C180.466949,345.038483 170.128021,334.903046 159.885437,324.674408
|
||||
C157.286652,322.079193 154.721649,322.081757 152.039108,324.602417
|
||||
C149.374420,327.106262 146.665939,329.568176 143.894394,331.952820
|
||||
C131.417450,342.688080 118.923973,353.404236 106.405235,364.090668
|
||||
C103.801842,366.313019 103.317673,368.455139 105.596527,371.334320
|
||||
C116.782631,385.467072 128.715576,398.830261 143.196426,409.750458
|
||||
C176.161835,434.610077 212.973877,448.514587 255.501282,449.138916
|
||||
M189.499390,266.930115
|
||||
C181.168930,266.940765 172.836380,267.062714 164.509033,266.906921
|
||||
C161.208740,266.845184 160.073959,268.146149 160.117996,271.308289
|
||||
C160.229416,279.303986 160.045364,287.305298 160.257339,295.297028
|
||||
C160.311691,297.346100 160.792877,299.949402 162.103790,301.309052
|
||||
C171.582352,311.140259 181.320236,320.721619 191.002884,330.355072
|
||||
C191.289459,330.640198 191.872299,330.627502 193.184540,330.999786
|
||||
C193.184540,320.854309 193.184540,311.037811 193.184540,300.898590
|
||||
C220.325668,300.898590 246.637192,300.839630 272.946136,301.073181
|
||||
C274.257202,301.084808 276.651550,303.619019 276.673218,305.007812
|
||||
C276.883728,318.493469 276.940826,331.994171 276.455414,345.469513
|
||||
C276.326477,349.049652 277.306274,349.984467 280.353607,349.998627
|
||||
C288.349701,350.035797 296.362427,350.374146 304.333069,349.940491
|
||||
C307.226807,349.783020 310.665161,348.461334 312.747864,346.496979
|
||||
C321.955231,337.812836 330.827118,328.766907 339.644623,319.681274
|
||||
C341.154297,318.125702 342.663361,315.762817 342.716919,313.734406
|
||||
C343.020325,302.246277 342.840027,290.746094 342.922607,279.250763
|
||||
C342.941284,276.650269 341.855560,275.757019 339.343353,275.727325
|
||||
C331.023865,275.628998 322.705902,275.392578 314.387878,275.186432
|
||||
C312.794067,275.146942 311.202820,275.004303 309.778137,274.919281
|
||||
C309.778137,256.105499 310.017609,237.840408 309.620392,219.589188
|
||||
C309.512573,214.635529 308.313171,209.313904 306.132202,204.892456
|
||||
C303.148712,198.844025 298.990814,193.306061 294.825592,187.946182
|
||||
C293.339630,186.034027 290.393127,184.232178 288.064636,184.168854
|
||||
C274.745728,183.806564 261.411346,184.062546 248.084229,183.919571
|
||||
C244.874619,183.885147 243.640381,184.842911 243.725601,188.169830
|
||||
C243.921814,195.828995 243.822876,203.496292 243.803253,211.160187
|
||||
C243.789734,216.440643 242.160141,217.976944 237.013870,217.781036
|
||||
C230.368546,217.528061 223.723328,217.227707 217.075180,217.105423
|
||||
C210.111511,216.977295 210.096878,217.058914 210.093384,223.805634
|
||||
C210.086746,236.634476 210.023666,249.464020 210.148590,262.291656
|
||||
C210.181946,265.716125 208.964706,267.137848 205.492203,267.014984
|
||||
C200.499725,266.838318 195.497223,266.944916 189.499390,266.930115
|
||||
M316.996613,77.465744
|
||||
C298.762146,72.024986 280.237946,68.789230 261.107758,68.642105
|
||||
C245.855347,68.524811 230.943268,70.574081 216.076340,73.490402
|
||||
C212.648483,74.162819 209.951828,75.210823 210.010727,79.824760
|
||||
C210.225479,96.648712 210.166946,113.478409 209.984619,130.303482
|
||||
C209.942169,134.220612 211.549973,135.082184 215.058044,134.986267
|
||||
C222.716568,134.776855 230.390610,135.074005 238.044968,134.796402
|
||||
C242.507233,134.634567 243.945023,136.508850 243.846680,140.699936
|
||||
C243.670837,148.193222 243.934235,155.698181 243.693985,163.187988
|
||||
C243.579086,166.770020 244.452911,168.206406 248.376831,168.124466
|
||||
C261.033661,167.860168 273.709686,168.262115 286.352966,167.763596
|
||||
C289.850433,167.625702 294.015076,166.076599 296.572357,163.746719
|
||||
C305.421478,155.684357 313.943970,147.218933 322.034485,138.396744
|
||||
C324.345154,135.877075 325.768372,131.660202 325.881958,128.165787
|
||||
C326.314667,114.851837 326.037537,101.515091 326.042328,88.186859
|
||||
C326.045319,79.833290 326.058716,79.833298 316.996613,77.465744
|
||||
M370.412140,358.045959
|
||||
C379.273315,366.099548 388.236542,374.045044 396.942383,382.263184
|
||||
C400.147949,385.289154 402.173401,385.050812 404.958527,381.720825
|
||||
C415.919708,368.615143 424.722137,354.223877 432.138397,338.850769
|
||||
C445.063507,312.058380 450.471771,283.851501 449.245026,254.231873
|
||||
C449.121948,251.259338 448.127136,250.094193 445.119019,250.109772
|
||||
C428.797729,250.194412 412.475403,250.216843 396.154419,250.112320
|
||||
C392.805237,250.090881 391.772675,251.510895 391.849182,254.613251
|
||||
C391.980530,259.939758 391.638275,265.289642 392.000793,270.595154
|
||||
C392.301880,275.002045 390.485992,275.927246 386.482605,275.795258
|
||||
C378.520752,275.532684 370.542236,275.824066 362.572479,275.729370
|
||||
C359.822815,275.696716 358.682983,276.632874 358.721466,279.471313
|
||||
C358.836304,287.944366 358.181030,296.472565 358.929718,304.881012
|
||||
C359.871552,315.458435 357.670288,324.263916 348.647186,330.626160
|
||||
C348.116028,331.000702 347.736542,331.593292 347.295441,332.092316
|
||||
C345.132568,334.539185 345.198212,336.901550 347.709412,339.024109
|
||||
C355.069153,345.244690 362.462646,351.425415 370.412140,358.045959
|
||||
M193.132919,104.500046
|
||||
C193.132141,98.009178 193.104935,91.518166 193.142365,85.027519
|
||||
C193.159714,82.019638 192.407074,80.541176 189.002426,82.020294
|
||||
C171.877808,89.459869 155.695190,98.364792 141.070389,110.168343
|
||||
C122.616478,125.062340 106.951553,142.241486 95.175865,162.869034
|
||||
C94.420258,164.192642 94.157227,165.797440 93.685669,167.209686
|
||||
C94.570076,167.613724 94.867683,167.868286 95.165924,167.869019
|
||||
C115.801720,167.920517 136.437714,167.922592 157.073273,168.016479
|
||||
C160.108612,168.030289 160.087982,166.166840 160.081589,164.054825
|
||||
C160.057419,156.066162 160.190567,148.074173 159.994202,140.090103
|
||||
C159.899353,136.232651 161.239685,134.714401 165.197357,134.826248
|
||||
C173.180023,135.051865 181.175613,134.799881 189.160172,134.987488
|
||||
C192.241394,135.059875 193.240417,133.970306 193.191055,130.963287
|
||||
C193.051773,122.477501 193.136475,113.988045 193.132919,104.500046
|
||||
M212.813965,316.955444
|
||||
C209.277878,317.014465 210.125900,319.704773 210.116318,321.680634
|
||||
C210.054214,334.495148 210.084534,347.310028 210.066391,360.124817
|
||||
C210.055328,367.924225 210.213120,367.946075 218.254929,367.779144
|
||||
C230.555222,367.523804 242.868439,367.183960 255.158264,367.525085
|
||||
C259.291901,367.639801 259.983032,366.365570 259.953705,362.878754
|
||||
C259.838928,349.232697 259.755493,335.583679 259.937042,321.939453
|
||||
C259.990479,317.921600 258.540405,316.824554 254.696457,316.876434
|
||||
C241.052048,317.060516 227.403625,316.945129 212.813965,316.955444
|
||||
M367.394501,259.149475
|
||||
C376.021149,259.175262 376.012390,259.175262 375.997894,250.372955
|
||||
C375.977905,238.230682 375.873322,226.087173 376.022797,213.946869
|
||||
C376.066772,210.376953 375.059418,208.839996 371.248749,208.889160
|
||||
C357.777924,209.062958 344.303192,209.067749 330.831482,208.955627
|
||||
C327.210297,208.925491 325.798950,210.163605 325.840912,213.877213
|
||||
C325.991302,227.182266 326.002197,240.490967 325.858459,253.796051
|
||||
C325.813690,257.939026 327.413361,259.299896 331.493561,259.228119
|
||||
C343.133362,259.023346 354.778961,259.151123 367.394501,259.149475
|
||||
z"/>
|
||||
<path fill="#F9FBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M255.001816,449.134491
|
||||
C212.973877,448.514587 176.161835,434.610077 143.196426,409.750458
|
||||
C128.715576,398.830261 116.782631,385.467072 105.596527,371.334320
|
||||
C103.317673,368.455139 103.801842,366.313019 106.405235,364.090668
|
||||
C118.923973,353.404236 131.417450,342.688080 143.894394,331.952820
|
||||
C146.665939,329.568176 149.374420,327.106262 152.039108,324.602417
|
||||
C154.721649,322.081757 157.286652,322.079193 159.885437,324.674408
|
||||
C170.128021,334.903046 180.466949,345.038483 190.522293,355.447906
|
||||
C192.048386,357.027740 192.866760,359.844269 192.974106,362.137421
|
||||
C193.291138,368.909790 193.087387,375.706604 193.087387,383.145721
|
||||
C195.435684,383.145721 197.208405,383.144836 198.981140,383.145874
|
||||
C222.634628,383.160034 246.288132,383.176605 269.941620,383.187408
|
||||
C276.780731,383.190521 276.989441,382.987366 276.849701,376.194244
|
||||
C276.822449,374.870544 276.775848,373.514465 276.474701,372.235321
|
||||
C275.518616,368.174316 277.267944,366.792328 281.174500,366.828033
|
||||
C292.000854,366.927063 302.835999,367.067169 313.650452,366.692841
|
||||
C316.048492,366.609833 318.822510,364.940857 320.642487,363.190277
|
||||
C324.461700,359.516632 327.848083,355.375031 331.244446,351.286224
|
||||
C333.395508,348.696625 335.450745,349.156250 337.657410,350.965210
|
||||
C338.814850,351.914032 339.880371,352.974579 340.994751,353.976532
|
||||
C355.577026,367.087677 370.171692,380.185120 384.727905,393.325165
|
||||
C386.295532,394.740234 387.641937,396.400421 389.453461,398.333740
|
||||
C350.838013,432.270813 306.823975,450.275848 255.001816,449.134491
|
||||
z"/>
|
||||
<path fill="#F9FBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M189.999207,266.930359
|
||||
C195.497223,266.944916 200.499725,266.838318 205.492203,267.014984
|
||||
C208.964706,267.137848 210.181946,265.716125 210.148590,262.291656
|
||||
C210.023666,249.464020 210.086746,236.634476 210.093384,223.805634
|
||||
C210.096878,217.058914 210.111511,216.977295 217.075180,217.105423
|
||||
C223.723328,217.227707 230.368546,217.528061 237.013870,217.781036
|
||||
C242.160141,217.976944 243.789734,216.440643 243.803253,211.160187
|
||||
C243.822876,203.496292 243.921814,195.828995 243.725601,188.169830
|
||||
C243.640381,184.842911 244.874619,183.885147 248.084229,183.919571
|
||||
C261.411346,184.062546 274.745728,183.806564 288.064636,184.168854
|
||||
C290.393127,184.232178 293.339630,186.034027 294.825592,187.946182
|
||||
C298.990814,193.306061 303.148712,198.844025 306.132202,204.892456
|
||||
C308.313171,209.313904 309.512573,214.635529 309.620392,219.589188
|
||||
C310.017609,237.840408 309.778137,256.105499 309.778137,274.919281
|
||||
C311.202820,275.004303 312.794067,275.146942 314.387878,275.186432
|
||||
C322.705902,275.392578 331.023865,275.628998 339.343353,275.727325
|
||||
C341.855560,275.757019 342.941284,276.650269 342.922607,279.250763
|
||||
C342.840027,290.746094 343.020325,302.246277 342.716919,313.734406
|
||||
C342.663361,315.762817 341.154297,318.125702 339.644623,319.681274
|
||||
C330.827118,328.766907 321.955231,337.812836 312.747864,346.496979
|
||||
C310.665161,348.461334 307.226807,349.783020 304.333069,349.940491
|
||||
C296.362427,350.374146 288.349701,350.035797 280.353607,349.998627
|
||||
C277.306274,349.984467 276.326477,349.049652 276.455414,345.469513
|
||||
C276.940826,331.994171 276.883728,318.493469 276.673218,305.007812
|
||||
C276.651550,303.619019 274.257202,301.084808 272.946136,301.073181
|
||||
C246.637192,300.839630 220.325668,300.898590 193.184540,300.898590
|
||||
C193.184540,311.037811 193.184540,320.854309 193.184540,330.999786
|
||||
C191.872299,330.627502 191.289459,330.640198 191.002884,330.355072
|
||||
C181.320236,320.721619 171.582352,311.140259 162.103790,301.309052
|
||||
C160.792877,299.949402 160.311691,297.346100 160.257339,295.297028
|
||||
C160.045364,287.305298 160.229416,279.303986 160.117996,271.308289
|
||||
C160.073959,268.146149 161.208740,266.845184 164.509033,266.906921
|
||||
C172.836380,267.062714 181.168930,266.940765 189.999207,266.930359
|
||||
z"/>
|
||||
<path fill="#F9FBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M317.380005,77.599693
|
||||
C326.058716,79.833298 326.045319,79.833290 326.042328,88.186859
|
||||
C326.037537,101.515091 326.314667,114.851837 325.881958,128.165787
|
||||
C325.768372,131.660202 324.345154,135.877075 322.034485,138.396744
|
||||
C313.943970,147.218933 305.421478,155.684357 296.572357,163.746719
|
||||
C294.015076,166.076599 289.850433,167.625702 286.352966,167.763596
|
||||
C273.709686,168.262115 261.033661,167.860168 248.376831,168.124466
|
||||
C244.452911,168.206406 243.579086,166.770020 243.693985,163.187988
|
||||
C243.934235,155.698181 243.670837,148.193222 243.846680,140.699936
|
||||
C243.945023,136.508850 242.507233,134.634567 238.044968,134.796402
|
||||
C230.390610,135.074005 222.716568,134.776855 215.058044,134.986267
|
||||
C211.549973,135.082184 209.942169,134.220612 209.984619,130.303482
|
||||
C210.166946,113.478409 210.225479,96.648712 210.010727,79.824760
|
||||
C209.951828,75.210823 212.648483,74.162819 216.076340,73.490402
|
||||
C230.943268,70.574081 245.855347,68.524811 261.107758,68.642105
|
||||
C280.237946,68.789230 298.762146,72.024986 317.380005,77.599693
|
||||
z"/>
|
||||
<path fill="#F9FBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M370.127502,357.833862
|
||||
C362.462646,351.425415 355.069153,345.244690 347.709412,339.024109
|
||||
C345.198212,336.901550 345.132568,334.539185 347.295441,332.092316
|
||||
C347.736542,331.593292 348.116028,331.000702 348.647186,330.626160
|
||||
C357.670288,324.263916 359.871552,315.458435 358.929718,304.881012
|
||||
C358.181030,296.472565 358.836304,287.944366 358.721466,279.471313
|
||||
C358.682983,276.632874 359.822815,275.696716 362.572479,275.729370
|
||||
C370.542236,275.824066 378.520752,275.532684 386.482605,275.795258
|
||||
C390.485992,275.927246 392.301880,275.002045 392.000793,270.595154
|
||||
C391.638275,265.289642 391.980530,259.939758 391.849182,254.613251
|
||||
C391.772675,251.510895 392.805237,250.090881 396.154419,250.112320
|
||||
C412.475403,250.216843 428.797729,250.194412 445.119019,250.109772
|
||||
C448.127136,250.094193 449.121948,251.259338 449.245026,254.231873
|
||||
C450.471771,283.851501 445.063507,312.058380 432.138397,338.850769
|
||||
C424.722137,354.223877 415.919708,368.615143 404.958527,381.720825
|
||||
C402.173401,385.050812 400.147949,385.289154 396.942383,382.263184
|
||||
C388.236542,374.045044 379.273315,366.099548 370.127502,357.833862
|
||||
z"/>
|
||||
<path fill="#F9FBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M193.132904,105.000038
|
||||
C193.136475,113.988045 193.051773,122.477501 193.191055,130.963287
|
||||
C193.240417,133.970306 192.241394,135.059875 189.160172,134.987488
|
||||
C181.175613,134.799881 173.180023,135.051865 165.197357,134.826248
|
||||
C161.239685,134.714401 159.899353,136.232651 159.994202,140.090103
|
||||
C160.190567,148.074173 160.057419,156.066162 160.081589,164.054825
|
||||
C160.087982,166.166840 160.108612,168.030289 157.073273,168.016479
|
||||
C136.437714,167.922592 115.801720,167.920517 95.165924,167.869019
|
||||
C94.867683,167.868286 94.570076,167.613724 93.685669,167.209686
|
||||
C94.157227,165.797440 94.420258,164.192642 95.175865,162.869034
|
||||
C106.951553,142.241486 122.616478,125.062340 141.070389,110.168343
|
||||
C155.695190,98.364792 171.877808,89.459869 189.002426,82.020294
|
||||
C192.407074,80.541176 193.159714,82.019638 193.142365,85.027519
|
||||
C193.104935,91.518166 193.132141,98.009178 193.132904,105.000038
|
||||
z"/>
|
||||
<path fill="#F9FAFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M213.285339,316.949310
|
||||
C227.403625,316.945129 241.052048,317.060516 254.696457,316.876434
|
||||
C258.540405,316.824554 259.990479,317.921600 259.937042,321.939453
|
||||
C259.755493,335.583679 259.838928,349.232697 259.953705,362.878754
|
||||
C259.983032,366.365570 259.291901,367.639801 255.158264,367.525085
|
||||
C242.868439,367.183960 230.555222,367.523804 218.254929,367.779144
|
||||
C210.213120,367.946075 210.055328,367.924225 210.066391,360.124817
|
||||
C210.084534,347.310028 210.054214,334.495148 210.116318,321.680634
|
||||
C210.125900,319.704773 209.277878,317.014465 213.285339,316.949310
|
||||
z"/>
|
||||
<path fill="#FAFBFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M366.908386,259.148773
|
||||
C354.778961,259.151123 343.133362,259.023346 331.493561,259.228119
|
||||
C327.413361,259.299896 325.813690,257.939026 325.858459,253.796051
|
||||
C326.002197,240.490967 325.991302,227.182266 325.840912,213.877213
|
||||
C325.798950,210.163605 327.210297,208.925491 330.831482,208.955627
|
||||
C344.303192,209.067749 357.777924,209.062958 371.248749,208.889160
|
||||
C375.059418,208.839996 376.066772,210.376953 376.022797,213.946869
|
||||
C375.873322,226.087173 375.977905,238.230682 375.997894,250.372955
|
||||
C376.012390,259.175262 376.021149,259.175262 366.908386,259.148773
|
||||
z"/>
|
||||
<path fill="#F9FAFB" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M227.485413,199.128754
|
||||
C225.897507,199.800339 224.316223,201.036285 222.720657,201.055008
|
||||
C208.935364,201.216721 195.146912,201.092056 181.360901,201.218323
|
||||
C178.250748,201.246811 176.870544,200.444534 176.906357,197.045303
|
||||
C177.053436,183.093567 177.029083,169.139191 176.947220,155.186493
|
||||
C176.928101,151.928986 178.265579,150.848190 181.436295,150.873596
|
||||
C196.175201,150.991577 210.915375,150.950882 226.166901,151.491135
|
||||
C226.739151,161.123215 226.738235,170.232117 226.880630,179.338760
|
||||
C226.983795,185.936966 227.276962,192.532196 227.485413,199.128754
|
||||
z"/>
|
||||
<path fill="#54BADE" opacity="1.000000" stroke="none"
|
||||
d="
|
||||
M227.931412,199.039597
|
||||
C227.276962,192.532196 226.983795,185.936966 226.880630,179.338760
|
||||
C226.738235,170.232117 226.739151,161.123215 226.602127,151.557037
|
||||
C227.679901,152.588333 229.807465,154.059235 229.836411,155.570328
|
||||
C230.096024,169.120773 230.017319,182.678528 229.916321,196.233215
|
||||
C229.909546,197.142746 228.913422,198.044876 227.931412,199.039597
|
||||
z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
6
website/static/img/gatsby.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<g>
|
||||
<path d="M128,0 C57.3075981,0 0,57.307374 0,128 C0,198.69285 57.3078221,256 128,256 C198.69285,256 256,198.692626 256,128 C256,57.307374 198.69285,0 128,0 Z M27.503973,129.334313 L126.665463,228.496027 C72.2144512,227.786305 28.2134711,183.785325 27.503973,129.334313 Z M150.496265,225.983324 L30.0166761,105.503735 C40.2328216,60.8232766 80.2223482,27.4871709 128,27.4871709 C161.397489,27.4871709 190.984927,43.7800881 209.262736,68.8464075 L195.346089,81.125855 C180.519662,59.8637627 155.886614,45.9486835 128,45.9486835 C92.4948508,45.9486835 62.259523,68.5011796 50.8311596,100.061636 L155.938588,205.169064 C181.463942,195.925651 201.095107,174.378594 207.669894,147.692325 L164.102633,147.692325 L164.102633,128.000224 L210.051317,128.000224 L210.051317,127.999776 L228.512829,127.999776 L228.512829,128 C228.512829,175.777652 195.176947,215.767178 150.496265,225.983324 Z" fill="#744C9E" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
BIN
website/static/img/github-statuses-deploy-previews.png
Normal file
After Width: | Height: | Size: 65 KiB |
1
website/static/img/hugo.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg enable-background="new 0 0 1500 410" height="410" viewBox="0 0 1500 410" width="1500" xmlns="http://www.w3.org/2000/svg"><path d="m335.1 261.9v-122.3c0-15.9-8.4-30.6-22.1-38.7-29.4-17.3-81.4-47.8-113.2-66.5-16.8-9.9-37.7-9.6-54.3.6-28.2 17.4-72.1 44.5-100.5 62-17.1 10.6-27.5 29.2-27.5 49.3v125.2c0 19.9 10.6 38.4 27.8 48.4l104.7 61.2c13.9 8.1 31.1 8.3 45.2.5 30.6-17 84.7-47.2 115.9-64.6 14.8-8.2 24-23.9 24-40.8z" fill="#ff4088" stroke="#c9177e" stroke-miterlimit="10" stroke-width="25"/><path d="m715.9 259.2v-122.6c0-15.6-8.3-30.1-21.8-38l-113.5-66.8c-16.8-9.9-37.7-9.6-54.3.6l-96.1 59.3c-19.8 12.2-31.9 33.8-31.9 57.1v120.1c0 19.9 10.6 38.4 27.8 48.4l104.7 61.2c13.9 8.1 31.1 8.3 45.2.5l115.9-64.6c14.8-8.2 24-23.9 24-40.8z" fill="#0594cb" stroke="#0083c0" stroke-miterlimit="10" stroke-width="25"/><path d="m96.9 309.9v-207.2h43.4v75.5h71.9v-75.5h43.5v207.2h-43.5v-90.6h-71.9v90.6z" fill="#fff"/><path d="m477.3 109.4h42.3v112.2c0 17.8.5 29.3 1.5 34.6 1.7 8.5 4.8 14.4 11.2 19.5s13.8 6.6 24.8 6.6c11.2 0 15-1.7 20.7-6.6s9.1-9.5 10.3-16.5c1.2-7.1 3.1-18.8 3.1-35.2v-114.6h42.3v108.8c0 24.9-1.1 42.4-3.2 52.7s-6.1 18.9-11.8 26-13.4 12.7-23 16.9-22.2 6.3-37.7 6.3c-18.7 0-32.9-2.3-42.5-6.9-9.7-4.6-17.3-10.5-22.9-17.8s-9.3-15-11.1-23c-2.6-11.9-3.9-29.4-3.9-52.6z" fill="#fff"/><path d="m1099.4 259.2v-122.3c0-15.8-8.5-30.5-22.2-38.3-29.6-16.9-81.9-46.8-113.7-65-16.5-9.4-36.9-9.2-53.2.6-26.5 15.9-67.5 40.5-96 57.6-20.2 12.1-32.6 34-32.6 57.5v119.5c0 19.9 10.6 38.4 27.8 48.4l104.7 61.2c13.9 8.1 31.1 8.3 45.2.5l115.9-64.6c14.8-8.2 24-23.9 24-40.8z" fill="#33ba91" stroke="#00a88a" stroke-miterlimit="10" stroke-width="25"/><path d="m1346.6 34.3c-16.5-9.4-36.9-9.2-53.2.6l-96 57.6c-20.2 12.1-32.6 34-32.6 57.5v119.5c0 19.9 10.6 38.4 27.8 48.4 29.9 17.5 77 45 104.7 61.2 13.9 8.1 31.1 8.3 45.2.5l115.9-64.6c14.8-8.2 24-23.9 24-40.8v-14.4-122.2c0-15.8-8.5-30.5-22.2-38.3z" fill="#ebb951" stroke="#fcd804" stroke-miterlimit="10" stroke-width="25"/><g fill="#fff"><path d="m1039.9 204c0 47.2-8.9 60.9-26.8 80.6-17.9 19.6-41.6 27.6-71.1 27.6-27 0-48.8-9.6-67.6-26.2-20.9-18.4-36.1-47-36.1-78.9 0-31.4 11.7-58.5 32.5-78.7 18.2-17.7 45.3-29.2 73.3-29.2 33.8 0 68.8 16 90.4 47.5l-31.7 26.8c-13.5-25-32.9-33.5-60.8-34.3-30.8-.9-64.8 28.5-62.2 67.8 1.4 21.9 11.7 59.7 61 66.6 25.9 3.6 55.4-24 55.4-39h-48.7v-37.6h92.5z"/><path d="m1323.7 99.2c-58.8 0-106.5 47.7-106.5 106.5s47.7 106.5 106.5 106.5 106.5-47.7 106.5-106.5-47.7-106.5-106.5-106.5zm0 173.4c-37 0-66.9-30-66.9-66.9s30-66.9 66.9-66.9c36.9 0 66.9 30 66.9 66.9s-29.9 66.9-66.9 66.9z"/></g></svg>
|
After Width: | Height: | Size: 2.5 KiB |
BIN
website/static/img/hugo_shortcode_gist.png
Normal file
After Width: | Height: | Size: 11 KiB |
7
website/static/img/metalsmith.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="98px" height="160px" viewBox="0 0 98 160" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Path</title>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<polygon id="Path" fill="#000000" fill-rule="nonzero" points="48.849 125.552 69.07 0.363 97.243 0.363 97.243 159.405 79.521 159.405 79.521 27.855 57.709 159.406 39.079 159.406 17.268 27.855 17.268 159.406 0 159.406 0 0.363 28.627 0.363"></polygon>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 564 B |
16
website/static/img/middleman.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<g>
|
||||
<rect fill="#F1C761" x="0" y="0" width="256" height="256" rx="22"></rect>
|
||||
<g transform="translate(19.561462, 32.318937)" fill="#000000" fill-opacity="0.35">
|
||||
<path d="M98.5353355,156.877821 L98.5353355,35.8995349 L69.1140465,40.0312558 L46.615814,83.6320532 L25.2342857,45.2226977 L0.502644518,49.1307375 L0.502644518,144.484359 L23.782485,148.447681 L23.782485,88.0988704 L46.5596811,131.029475 L47.0623256,131.029475 L71.0684917,87.9313223 L71.0684917,152.802233 L98.5353355,156.877821"></path>
|
||||
<path d="M0,21.6638937 L0,34.1687708 L108.863787,16.136505 L108.863787,0.170099668 L0,21.6638937"></path>
|
||||
<path d="M0,169.551096 L108.863787,190.988757 L108.863787,175.077635 L0,156.989236 L0,169.551096"></path>
|
||||
</g>
|
||||
<g transform="translate(128.425249, 32.318937)" fill="#FFFFFF">
|
||||
<path d="M0,0.170099668 L0,16.136505 L108.863787,34.1687708 L108.863787,21.6638937 L0,0.170099668"></path>
|
||||
<path d="M108.361143,144.484359 L108.361143,49.1307375 L83.6295017,45.2226977 L62.2479734,83.6320532 L39.7488904,40.0312558 L10.3284518,35.8995349 L10.3284518,156.877821 L37.7952957,152.802233 L37.7952957,87.9313223 L61.8014618,131.029475 L62.3032558,131.029475 L85.0813023,88.0988704 L85.0813023,148.447681 L108.361143,144.484359"></path>
|
||||
<path d="M0,190.988757 L108.863787,169.551096 L108.863787,156.989236 L0,175.077635 L0,190.988757"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
website/static/img/nextjs.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg height="1024pt" viewBox=".5 -.2 1023 1024.1" width="1024pt" xmlns="http://www.w3.org/2000/svg"><path d="m478.5.6c-2.2.2-9.2.9-15.5 1.4-145.3 13.1-281.4 91.5-367.6 212-48 67-78.7 143-90.3 223.5-4.1 28.1-4.6 36.4-4.6 74.5s.5 46.4 4.6 74.5c27.8 192.1 164.5 353.5 349.9 413.3 33.2 10.7 68.2 18 108 22.4 15.5 1.7 82.5 1.7 98 0 68.7-7.6 126.9-24.6 184.3-53.9 8.8-4.5 10.5-5.7 9.3-6.7-.8-.6-38.3-50.9-83.3-111.7l-81.8-110.5-102.5-151.7c-56.4-83.4-102.8-151.6-103.2-151.6-.4-.1-.8 67.3-1 149.6-.3 144.1-.4 149.9-2.2 153.3-2.6 4.9-4.6 6.9-8.8 9.1-3.2 1.6-6 1.9-21.1 1.9h-17.3l-4.6-2.9c-3-1.9-5.2-4.4-6.7-7.3l-2.1-4.5.2-200.5.3-200.6 3.1-3.9c1.6-2.1 5-4.8 7.4-6.1 4.1-2 5.7-2.2 23-2.2 20.4 0 23.8.8 29.1 6.6 1.5 1.6 57 85.2 123.4 185.9s157.2 238.2 201.8 305.7l81 122.7 4.1-2.7c36.3-23.6 74.7-57.2 105.1-92.2 64.7-74.3 106.4-164.9 120.4-261.5 4.1-28.1 4.6-36.4 4.6-74.5s-.5-46.4-4.6-74.5c-27.8-192.1-164.5-353.5-349.9-413.3-32.7-10.6-67.5-17.9-106.5-22.3-9.6-1-75.7-2.1-84-1.3zm209.4 309.4c4.8 2.4 8.7 7 10.1 11.8.8 2.6 1 58.2.8 183.5l-.3 179.8-31.7-48.6-31.8-48.6v-130.7c0-84.5.4-132 1-134.3 1.6-5.6 5.1-10 9.9-12.6 4.1-2.1 5.6-2.3 21.3-2.3 14.8 0 17.4.2 20.7 2z"/><path d="m784.3 945.1c-3.5 2.2-4.6 3.7-1.5 2 2.2-1.3 5.8-4 5.2-4.1-.3 0-2 1-3.7 2.1zm-6.9 4.5c-1.8 1.4-1.8 1.5.4.4 1.2-.6 2.2-1.3 2.2-1.5 0-.8-.5-.6-2.6 1.1zm-5 3c-1.8 1.4-1.8 1.5.4.4 1.2-.6 2.2-1.3 2.2-1.5 0-.8-.5-.6-2.6 1.1zm-5 3c-1.8 1.4-1.8 1.5.4.4 1.2-.6 2.2-1.3 2.2-1.5 0-.8-.5-.6-2.6 1.1zm-7.6 4c-3.8 2-3.6 2.8.2.9 1.7-.9 3-1.8 3-2 0-.7-.1-.6-3.2 1.1z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
website/static/img/nuxt.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 298"><g fill="none" fill-rule="nonzero"><path fill="#00C58E" d="M227.92099 82.07407l-13.6889 23.7037-46.8148-81.08641L23.7037 273.58025h97.3037c0 13.0912 10.61252 23.7037 23.70371 23.7037H23.70371c-8.46771 0-16.29145-4.52017-20.5246-11.85382-4.23315-7.33366-4.23272-16.36849.00114-23.70174L146.89383 12.83951c4.23415-7.33433 12.0596-11.85252 20.5284-11.85252 8.46878 0 16.29423 4.51819 20.52839 11.85252l39.97037 69.23456z"/><path fill="#2F495E" d="M331.6642 261.7284l-90.05432-155.95062-13.6889-23.7037-13.68888 23.7037-90.04445 155.95061c-4.23385 7.33325-4.23428 16.36808-.00113 23.70174 4.23314 7.33365 12.05689 11.85382 20.5246 11.85382h166.4c8.46946 0 16.29644-4.51525 20.532-11.84955 4.23555-7.3343 4.23606-16.37123.00132-23.706h.01976zM144.7111 273.58024L227.921 129.48148l83.19012 144.09877h-166.4z"/><path fill="#108775" d="M396.04938 285.4321c-4.23344 7.33254-12.05656 11.85185-20.52345 11.85185H311.1111c13.0912 0 23.7037-10.6125 23.7037-23.7037h40.66173L260.09877 73.74815l-18.4889 32.02963-13.68888-23.7037L239.5753 61.8963c4.23416-7.33433 12.0596-11.85252 20.5284-11.85252 8.46879 0 16.29423 4.51819 20.52839 11.85252l115.41728 199.8321c4.23426 7.33395 4.23426 16.36975 0 23.7037z"/></g></svg>
|
After Width: | Height: | Size: 1.2 KiB |
8
website/static/img/preact.svg
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="-286 -286 572 572" version="1.1">
|
||||
<path d="M0,-256 221.7025033688164,-128 221.7025033688164,128 0,256 -221.7025033688164,128 -221.7025033688164,-128z" fill="#673ab8"/>
|
||||
<ellipse cx="0" cy="0" stroke-width="16px" rx="75px" ry="196px" fill="none" stroke="white" transform="rotate(52.5)"/>
|
||||
<ellipse cx="0" cy="0" stroke-width="16px" rx="75px" ry="196px" fill="none" stroke="white" transform="rotate(-52.5)"/>
|
||||
<circle cx="0" cy="0" r="34" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 737 B |
BIN
website/static/img/preview-link-check.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
website/static/img/preview-link-published.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
website/static/img/preview-link-unpublished.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
website/static/img/screen shot 2018-01-05 at 4.25.07 pm.png
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
website/static/img/screen-shot-2020-08-20-at-14.36.26.png
Normal file
After Width: | Height: | Size: 465 KiB |
BIN
website/static/img/screen-shot-2021-11-15-at-4.16.53-pm.png
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
website/static/img/screen-shot-2021-11-16-at-1.34.18-PM.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
website/static/img/screenshot-jekyll-tutorial-blog.png
Normal file
After Width: | Height: | Size: 148 KiB |
BIN
website/static/img/simple-cms-external-media-library.png
Normal file
After Width: | Height: | Size: 290 KiB |
BIN
website/static/img/simple-cms.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
website/static/img/slack.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
24
website/static/img/slack.svg
Normal file
@ -0,0 +1,24 @@
|
||||
<svg width="165" height="41" viewBox="0 0 165 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 0.5H158.5C161.8 0.5 164.5 3.2 164.5 6.5V34.5C164.5 37.8 161.8 40.5 158.5 40.5H6.5C3.2 40.5 0.5 37.8 0.5 34.5V6.5C0.5 3.2 3.2 0.5 6.5 0.5Z" fill="white" stroke="#C7CACD"/>
|
||||
<path d="M15.1 23.4C15.1 24.7 14.1 25.7 12.8 25.7C11.5 25.7 10.5 24.7 10.5 23.4C10.5 22.1 11.5 21.1 12.8 21.1H15.1V23.4V23.4Z" fill="#E01E5A"/>
|
||||
<path d="M16.3 23.4C16.3 22.1 17.3 21.1 18.6 21.1C19.9 21.1 20.9 22.1 20.9 23.4V29.2C20.9 30.5 19.9 31.5 18.6 31.5C17.3 31.5 16.3 30.5 16.3 29.2V23.4Z" fill="#E01E5A"/>
|
||||
<path d="M18.6 14.2C17.3 14.2 16.3 13.2 16.3 11.9C16.3 10.6 17.3 9.6 18.6 9.6C19.9 9.6 20.9 10.6 20.9 11.9V14.2H18.6Z" fill="#36C5F0"/>
|
||||
<path d="M18.6 15.3C19.9 15.3 20.9 16.3 20.9 17.6C20.9 18.9 19.9 19.9 18.6 19.9H12.8C11.5 19.9 10.5 18.9 10.5 17.6C10.5 16.3 11.5 15.3 12.8 15.3H18.6Z" fill="#36C5F0"/>
|
||||
<path d="M27.9 17.7C27.9 16.4 28.9 15.4 30.2 15.4C31.5 15.4 32.5 16.4 32.5 17.7C32.5 19 31.5 20 30.2 20H27.9V17.7Z" fill="#2EB67D"/>
|
||||
<path d="M26.7 17.7C26.7 19 25.7 20 24.4 20C23.1 20 22.1 19 22.1 17.7V11.9C22.1 10.6 23.1 9.6 24.4 9.6C25.7 9.6 26.7 10.6 26.7 11.9V17.7Z" fill="#2EB67D"/>
|
||||
<path d="M24.4 26.9C25.7 26.9 26.7 27.9 26.7 29.2C26.7 30.5 25.7 31.5 24.4 31.5C23.1 31.5 22.1 30.5 22.1 29.2V26.9H24.4Z" fill="#ECB22E"/>
|
||||
<path d="M24.4 25.8C23.1 25.8 22.1 24.8 22.1 23.5C22.1 22.2 23.1 21.2 24.4 21.2H30.2C31.5 21.2 32.5 22.2 32.5 23.5C32.5 24.8 31.5 25.8 30.2 25.8H24.4Z" fill="#ECB22E"/>
|
||||
<path d="M47.056 23.152V14.576H45.536V22.928C45.536 23.5573 45.4027 24.0587 45.136 24.432C44.88 24.8053 44.4053 24.992 43.712 24.992C43.3387 24.992 43.0293 24.9387 42.784 24.832C42.5493 24.7147 42.3627 24.5547 42.224 24.352C42.096 24.1493 42.0053 23.9093 41.952 23.632C41.8987 23.3547 41.872 23.0507 41.872 22.72V22.24H40.352V22.944C40.352 24.032 40.64 24.8587 41.216 25.424C41.792 25.9787 42.6133 26.256 43.68 26.256C44.32 26.256 44.8533 26.1707 45.28 26C45.7173 25.8187 46.064 25.584 46.32 25.296C46.5867 24.9973 46.7733 24.6613 46.88 24.288C46.9973 23.9147 47.056 23.536 47.056 23.152Z" fill="black"/>
|
||||
<path d="M49.8329 21.872C49.8329 21.3707 49.8969 20.928 50.0249 20.544C50.1635 20.1493 50.3502 19.8187 50.5849 19.552C50.8195 19.2853 51.0915 19.0827 51.4009 18.944C51.7209 18.8053 52.0569 18.736 52.4089 18.736C52.7609 18.736 53.0915 18.8053 53.4009 18.944C53.7209 19.0827 53.9982 19.2853 54.2329 19.552C54.4675 19.8187 54.6489 20.1493 54.7769 20.544C54.9155 20.928 54.9849 21.3707 54.9849 21.872C54.9849 22.3733 54.9155 22.8213 54.7769 23.216C54.6489 23.6 54.4675 23.9253 54.2329 24.192C53.9982 24.448 53.7209 24.6453 53.4009 24.784C53.0915 24.9227 52.7609 24.992 52.4089 24.992C52.0569 24.992 51.7209 24.9227 51.4009 24.784C51.0915 24.6453 50.8195 24.448 50.5849 24.192C50.3502 23.9253 50.1635 23.6 50.0249 23.216C49.8969 22.8213 49.8329 22.3733 49.8329 21.872ZM48.3929 21.872C48.3929 22.48 48.4782 23.0453 48.6489 23.568C48.8195 24.0907 49.0755 24.5493 49.4169 24.944C49.7582 25.328 50.1795 25.632 50.6809 25.856C51.1822 26.0693 51.7582 26.176 52.4089 26.176C53.0702 26.176 53.6462 26.0693 54.1369 25.856C54.6382 25.632 55.0595 25.328 55.4009 24.944C55.7422 24.5493 55.9982 24.0907 56.1689 23.568C56.3395 23.0453 56.4249 22.48 56.4249 21.872C56.4249 21.264 56.3395 20.6987 56.1689 20.176C55.9982 19.6427 55.7422 19.184 55.4009 18.8C55.0595 18.4053 54.6382 18.096 54.1369 17.872C53.6462 17.648 53.0702 17.536 52.4089 17.536C51.7582 17.536 51.1822 17.648 50.6809 17.872C50.1795 18.096 49.7582 18.4053 49.4169 18.8C49.0755 19.184 48.8195 19.6427 48.6489 20.176C48.4782 20.6987 48.3929 21.264 48.3929 21.872Z" fill="black"/>
|
||||
<path d="M58.9884 16.24V14.576H57.6284V16.24H58.9884ZM57.6284 17.728V26H58.9884V17.728H57.6284Z" fill="black"/>
|
||||
<path d="M60.6152 17.728V26H61.9752V21.328C61.9752 20.9547 62.0232 20.6133 62.1192 20.304C62.2259 19.984 62.3806 19.7067 62.5832 19.472C62.7859 19.2373 63.0366 19.056 63.3352 18.928C63.6446 18.8 64.0072 18.736 64.4232 18.736C64.9459 18.736 65.3566 18.8853 65.6552 19.184C65.9539 19.4827 66.1032 19.888 66.1032 20.4V26H67.4632V20.56C67.4632 20.112 67.4152 19.7067 67.3192 19.344C67.2339 18.9707 67.0792 18.6507 66.8552 18.384C66.6312 18.1173 66.3379 17.9093 65.9752 17.76C65.6126 17.6107 65.1592 17.536 64.6152 17.536C63.3886 17.536 62.4926 18.0373 61.9272 19.04H61.8952V17.728H60.6152Z" fill="black"/>
|
||||
<path d="M79.847 26V17.728H78.487V22.4C78.487 22.7733 78.4337 23.12 78.327 23.44C78.231 23.7493 78.0817 24.0213 77.879 24.256C77.6763 24.4907 77.4203 24.672 77.111 24.8C76.8123 24.928 76.455 24.992 76.039 24.992C75.5163 24.992 75.1057 24.8427 74.807 24.544C74.5083 24.2453 74.359 23.84 74.359 23.328V17.728H72.999V23.168C72.999 23.616 73.0417 24.0267 73.127 24.4C73.223 24.7627 73.383 25.0773 73.607 25.344C73.831 25.6107 74.1243 25.8187 74.487 25.968C74.8497 26.1067 75.303 26.176 75.847 26.176C76.455 26.176 76.983 26.0587 77.431 25.824C77.879 25.5787 78.247 25.2 78.535 24.688H78.567V26H79.847Z" fill="black"/>
|
||||
<path d="M82.2416 23.392H80.8816C80.9029 23.904 81.0096 24.3413 81.2016 24.704C81.3936 25.056 81.6496 25.344 81.9696 25.568C82.2896 25.7813 82.6576 25.936 83.0736 26.032C83.4896 26.128 83.9269 26.176 84.3856 26.176C84.8016 26.176 85.2176 26.1333 85.6336 26.048C86.0603 25.9733 86.4389 25.8347 86.7696 25.632C87.1109 25.4293 87.3829 25.1627 87.5856 24.832C87.7989 24.5013 87.9056 24.0853 87.9056 23.584C87.9056 23.1893 87.8256 22.8587 87.6656 22.592C87.5163 22.3253 87.3136 22.1067 87.0576 21.936C86.8123 21.7547 86.5243 21.6107 86.1936 21.504C85.8736 21.3973 85.5429 21.3067 85.2016 21.232C84.8816 21.1573 84.5616 21.088 84.2416 21.024C83.9216 20.9493 83.6336 20.864 83.3776 20.768C83.1216 20.6613 82.9083 20.5333 82.7376 20.384C82.5776 20.224 82.4976 20.0267 82.4976 19.792C82.4976 19.5787 82.5509 19.408 82.6576 19.28C82.7643 19.1413 82.9029 19.0347 83.0736 18.96C83.2443 18.8747 83.4309 18.816 83.6336 18.784C83.8469 18.752 84.0549 18.736 84.2576 18.736C84.4816 18.736 84.7003 18.7627 84.9136 18.816C85.1376 18.8587 85.3403 18.9333 85.5216 19.04C85.7029 19.1467 85.8523 19.2907 85.9696 19.472C86.0869 19.6427 86.1563 19.8613 86.1776 20.128H87.5376C87.5056 19.6267 87.3989 19.2107 87.2176 18.88C87.0363 18.5387 86.7909 18.272 86.4816 18.08C86.1829 17.8773 85.8363 17.7387 85.4416 17.664C85.0469 17.5787 84.6149 17.536 84.1456 17.536C83.7829 17.536 83.4149 17.584 83.0416 17.68C82.6789 17.7653 82.3483 17.904 82.0496 18.096C81.7616 18.2773 81.5216 18.5173 81.3296 18.816C81.1483 19.1147 81.0576 19.472 81.0576 19.888C81.0576 20.4213 81.1909 20.8373 81.4576 21.136C81.7243 21.4347 82.0549 21.6693 82.4496 21.84C82.8549 22 83.2923 22.128 83.7616 22.224C84.2309 22.3093 84.6629 22.4107 85.0576 22.528C85.4629 22.6347 85.7989 22.7787 86.0656 22.96C86.3323 23.1413 86.4656 23.408 86.4656 23.76C86.4656 24.016 86.4016 24.2293 86.2736 24.4C86.1456 24.56 85.9803 24.6827 85.7776 24.768C85.5856 24.8533 85.3723 24.912 85.1376 24.944C84.9029 24.976 84.6789 24.992 84.4656 24.992C84.1883 24.992 83.9163 24.9653 83.6496 24.912C83.3936 24.8587 83.1589 24.7733 82.9456 24.656C82.7429 24.528 82.5776 24.3627 82.4496 24.16C82.3216 23.9467 82.2523 23.6907 82.2416 23.392Z" fill="black"/>
|
||||
<path d="M93.8947 21.872C93.8947 21.3707 93.9587 20.928 94.0867 20.544C94.2254 20.1493 94.4121 19.8187 94.6467 19.552C94.8814 19.2853 95.1534 19.0827 95.4627 18.944C95.7827 18.8053 96.1187 18.736 96.4707 18.736C96.8227 18.736 97.1534 18.8053 97.4627 18.944C97.7827 19.0827 98.0601 19.2853 98.2947 19.552C98.5294 19.8187 98.7107 20.1493 98.8387 20.544C98.9774 20.928 99.0467 21.3707 99.0467 21.872C99.0467 22.3733 98.9774 22.8213 98.8387 23.216C98.7107 23.6 98.5294 23.9253 98.2947 24.192C98.0601 24.448 97.7827 24.6453 97.4627 24.784C97.1534 24.9227 96.8227 24.992 96.4707 24.992C96.1187 24.992 95.7827 24.9227 95.4627 24.784C95.1534 24.6453 94.8814 24.448 94.6467 24.192C94.4121 23.9253 94.2254 23.6 94.0867 23.216C93.9587 22.8213 93.8947 22.3733 93.8947 21.872ZM92.4547 21.872C92.4547 22.48 92.5401 23.0453 92.7107 23.568C92.8814 24.0907 93.1374 24.5493 93.4787 24.944C93.8201 25.328 94.2414 25.632 94.7427 25.856C95.2441 26.0693 95.8201 26.176 96.4707 26.176C97.1321 26.176 97.7081 26.0693 98.1987 25.856C98.7001 25.632 99.1214 25.328 99.4627 24.944C99.8041 24.5493 100.06 24.0907 100.231 23.568C100.401 23.0453 100.487 22.48 100.487 21.872C100.487 21.264 100.401 20.6987 100.231 20.176C100.06 19.6427 99.8041 19.184 99.4627 18.8C99.1214 18.4053 98.7001 18.096 98.1987 17.872C97.7081 17.648 97.1321 17.536 96.4707 17.536C95.8201 17.536 95.2441 17.648 94.7427 17.872C94.2414 18.096 93.8201 18.4053 93.4787 18.8C93.1374 19.184 92.8814 19.6427 92.7107 20.176C92.5401 20.6987 92.4547 21.264 92.4547 21.872Z" fill="black"/>
|
||||
<path d="M101.61 17.728V26H102.97V21.328C102.97 20.9547 103.018 20.6133 103.114 20.304C103.221 19.984 103.376 19.7067 103.578 19.472C103.781 19.2373 104.032 19.056 104.33 18.928C104.64 18.8 105.002 18.736 105.418 18.736C105.941 18.736 106.352 18.8853 106.65 19.184C106.949 19.4827 107.098 19.888 107.098 20.4V26H108.458V20.56C108.458 20.112 108.41 19.7067 108.314 19.344C108.229 18.9707 108.074 18.6507 107.85 18.384C107.626 18.1173 107.333 17.9093 106.97 17.76C106.608 17.6107 106.154 17.536 105.61 17.536C104.384 17.536 103.488 18.0373 102.922 19.04H102.89V17.728H101.61Z" fill="black"/>
|
||||
<path d="M120.6 18.2C120.5 17.6 120 16.6 118.5 16.6C117.4 16.6 116.7 17.3 116.7 18C116.7 18.6 117.1 19.1 117.9 19.3L119.5 19.6C121.6 20 122.7 21.3 122.7 22.9C122.7 24.6 121.2 26.4 118.6 26.4C115.6 26.4 114.3 24.5 114.1 22.8L116.1 22.3C116.2 23.4 117 24.4 118.6 24.4C119.8 24.4 120.4 23.8 120.4 23C120.4 22.3 119.9 21.8 119 21.7L117.4 21.4C115.6 21 114.4 19.9 114.4 18.2C114.4 16.2 116.2 14.6 118.4 14.6C121.2 14.6 122.2 16.3 122.5 17.5L120.6 18.2Z" fill="black"/>
|
||||
<path d="M124 26.2V14.6H126.1V26.2H124Z" fill="black"/>
|
||||
<path d="M129.7 21.7L131.6 21.4C132 21.3 132.2 21.1 132.2 20.8C132.2 20.2 131.8 19.8 130.9 19.8C130 19.8 129.5 20.4 129.4 21.1L127.5 20.7C127.6 19.5 128.8 18.1 130.9 18.1C133.4 18.1 134.3 19.5 134.3 21.1V25C134.3 25.4 134.3 26 134.4 26.2H132.4C132.4 26 132.3 25.6 132.3 25.3C131.9 25.9 131.1 26.5 130 26.5C128.3 26.5 127.3 25.4 127.3 24.1C127.3 22.6 128.4 21.9 129.7 21.7ZM132.2 23V22.6L130.4 22.9C129.9 23 129.4 23.3 129.4 23.9C129.4 24.4 129.7 24.8 130.4 24.8C131.4 24.8 132.2 24.4 132.2 23Z" fill="black"/>
|
||||
<path d="M137.5 22.3C137.5 23.7 138.4 24.5 139.5 24.5C140.6 24.5 141.1 23.8 141.3 23.2L143.2 23.8C142.8 25.1 141.6 26.5 139.5 26.5C137.2 26.5 135.4 24.7 135.4 22.3C135.4 19.9 137.2 18.1 139.5 18.1C141.6 18.1 142.9 19.4 143.2 20.8L141.3 21.4C141.1 20.7 140.6 20.1 139.6 20.1C138.4 20.1 137.5 20.8 137.5 22.3Z" fill="black"/>
|
||||
<path d="M148.7 21.6L151.9 26.2H149.3L147.2 23.2L146.3 24.1V26.2H144.2V14.6H146.3V21.2L149 18.3H151.8L148.7 21.6Z" fill="black"/>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
6
website/static/img/uc-logo-horizontal.svg
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
website/static/img/widgets-markdown.PNG
Normal file
After Width: | Height: | Size: 18 KiB |