Compare commits
47 commits
Author | SHA1 | Date | |
---|---|---|---|
43424cdf36 | |||
419a160572 | |||
06a7b8788b | |||
02036a02dd | |||
322ab9fa53 | |||
fd0c223877 | |||
1907e83792 | |||
15e0ad1115 | |||
59a7f4127c | |||
3f7e775526 | |||
eeaaa8a1cc | |||
9945101e1e | |||
cc762ba202 | |||
48dc1afd3a | |||
d7036399b8 | |||
277342140c | |||
d8895530d1 | |||
6165657ad9 | |||
10b0e0c37a | |||
0fb14fff16 | |||
12a35c3fbc | |||
a30b4841e8 | |||
c2bf86c592 | |||
fd9756e153 | |||
0b45ad7223 | |||
231fd9ceed | |||
1b36d3fa98 | |||
9051fac4db | |||
03702f163a | |||
6ac8b27f25 | |||
a42f9c3931 | |||
c22203cd4d | |||
829dbc9402 | |||
bf16a7ebfb | |||
4be392e35f | |||
bbd3eff9dc | |||
d52eccd795 | |||
20e623ea39 | |||
8389af6c6e | |||
e240980d48 | |||
fd0b936f67 | |||
209bac50d7 | |||
aeb3898ca9 | |||
dd04b0759f | |||
7468c81944 | |||
6a0c475f74 | |||
a489034746 |
164
.gitignore
vendored
Normal file
|
@ -0,0 +1,164 @@
|
|||
# Created by https://www.gitignore.io
|
||||
|
||||
### OSX ###
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Files that might appear on external disk
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
# Directories potentially created on remote AFP share
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
|
||||
### Python ###
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
env/
|
||||
venv/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.coverage
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
target/
|
||||
|
||||
|
||||
### Django ###
|
||||
*.log
|
||||
*.pot
|
||||
*.pyc
|
||||
__pycache__/
|
||||
local_settings.py
|
||||
media/services/**
|
||||
*.socket
|
||||
|
||||
.env
|
||||
db.sqlite3
|
||||
|
||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||
|
||||
# User-specific stuff
|
||||
.idea/**/workspace.xml
|
||||
.idea/**/tasks.xml
|
||||
.idea/**/usage.statistics.xml
|
||||
.idea/**/dictionaries
|
||||
.idea/**/shelf
|
||||
|
||||
# Generated files
|
||||
.idea/**/contentModel.xml
|
||||
|
||||
# Sensitive or high-churn files
|
||||
.idea/**/dataSources/
|
||||
.idea/**/dataSources.ids
|
||||
.idea/**/dataSources.local.xml
|
||||
.idea/**/sqlDataSources.xml
|
||||
.idea/**/dynamic.xml
|
||||
.idea/**/uiDesigner.xml
|
||||
.idea/**/dbnavigator.xml
|
||||
|
||||
# Gradle
|
||||
.idea/**/gradle.xml
|
||||
.idea/**/libraries
|
||||
|
||||
# Gradle and Maven with auto-import
|
||||
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||
# since they will be recreated, and may cause churn. Uncomment if using
|
||||
# auto-import.
|
||||
# .idea/artifacts
|
||||
# .idea/compiler.xml
|
||||
# .idea/jarRepositories.xml
|
||||
# .idea/modules.xml
|
||||
# .idea/*.iml
|
||||
# .idea/modules
|
||||
# *.iml
|
||||
# *.ipr
|
||||
|
||||
# CMake
|
||||
cmake-build-*/
|
||||
|
||||
# Mongo Explorer plugin
|
||||
.idea/**/mongoSettings.xml
|
||||
|
||||
# File-based project format
|
||||
*.iws
|
||||
|
||||
# IntelliJ
|
||||
out/
|
||||
|
||||
# mpeltonen/sbt-idea plugin
|
||||
.idea_modules/
|
||||
|
||||
# JIRA plugin
|
||||
atlassian-ide-plugin.xml
|
||||
|
||||
# Cursive Clojure plugin
|
||||
.idea/replstate.xml
|
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||
com_crashlytics_export_strings.xml
|
||||
crashlytics.properties
|
||||
crashlytics-build.properties
|
||||
fabric.properties
|
||||
|
||||
# Editor-based Rest Client
|
||||
.idea/httpRequests
|
||||
|
||||
# Android studio 3.1+ serialized cache file
|
||||
.idea/caches/build_file_checksums.ser
|
3
.idea/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
|
||||
# Default ignored files
|
||||
/workspace.xml
|
5
.idea/codeStyles/codeStyleConfig.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
13
.idea/dataSources.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="DataSourceManagerImpl" format="xml" multifile-model="true">
|
||||
<data-source source="LOCAL" name="Django default" uuid="cbcc816f-a2e5-4589-8721-cd28417de213">
|
||||
<driver-ref>mysql.8</driver-ref>
|
||||
<synchronize>true</synchronize>
|
||||
<imported>true</imported>
|
||||
<remarks>$PROJECT_DIR$/gnousEU/settings.py</remarks>
|
||||
<jdbc-driver>com.mysql.cj.jdbc.Driver</jdbc-driver>
|
||||
<jdbc-url>jdbc:mysql://127.0.0.1:3306/tuxbot</jdbc-url>
|
||||
</data-source>
|
||||
</component>
|
||||
</project>
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="DiscordProjectSettings">
|
||||
<option name="show" value="true" />
|
||||
<option name="show" value="PROJECT_FILES" />
|
||||
</component>
|
||||
<component name="ProjectNotificationSettings">
|
||||
<option name="askShowProject" value="false" />
|
||||
|
|
31
.idea/gnousEU.iml
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="PYTHON_MODULE" version="4">
|
||||
<component name="FacetManager">
|
||||
<facet type="django" name="Django">
|
||||
<configuration>
|
||||
<option name="rootFolder" value="$MODULE_DIR$" />
|
||||
<option name="settingsModule" value="tuxWeb/settings.py" />
|
||||
<option name="manageScript" value="$MODULE_DIR$/manage.py" />
|
||||
<option name="environment" value="<map> <entry> <string>OAUTHLIB_INSECURE_TRANSPORT</string> <string>1</string> </entry> </map>" />
|
||||
<option name="doNotUseTestRunner" value="false" />
|
||||
<option name="trackFilePattern" value="apps/tuxbot_gnous_eu/migrations" />
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/venv" />
|
||||
</content>
|
||||
<orderEntry type="jdk" jdkName="Python 3.8 (gnous-site)" jdkType="Python SDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
<component name="TemplatesService">
|
||||
<option name="TEMPLATE_CONFIGURATION" value="Django" />
|
||||
<option name="TEMPLATE_FOLDERS">
|
||||
<list>
|
||||
<option value="$MODULE_DIR$/apps/gnous_eu/templates" />
|
||||
<option value="$MODULE_DIR$/apps/tuxbot_gnous_eu/templates" />
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
</module>
|
|
@ -1,9 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
6
.idea/inspectionProfiles/profiles_settings.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<component name="InspectionProjectProfileManager">
|
||||
<settings>
|
||||
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||
<version value="1.0" />
|
||||
</settings>
|
||||
</component>
|
|
@ -3,4 +3,5 @@
|
|||
<component name="JavaScriptSettings">
|
||||
<option name="languageLevel" value="ES6" />
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8 (gnous-site)" project-jdk-type="Python SDK" />
|
||||
</project>
|
|
@ -2,7 +2,7 @@
|
|||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/gnousdoteu.iml" filepath="$PROJECT_DIR$/.idea/gnousdoteu.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/gnousEU.iml" filepath="$PROJECT_DIR$/.idea/gnousEU.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
|
@ -1,6 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CommitMessageInspectionProfile">
|
||||
<profile version="1.0">
|
||||
<inspection_tool class="GrazieCommit" enabled="true" level="TYPO" enabled_by_default="true" />
|
||||
</profile>
|
||||
</component>
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
25
.idea/watcherTasks.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectTasksOptions">
|
||||
<TaskOptions isEnabled="false">
|
||||
<option name="arguments" value="$FileName$:../css/$FileNameWithoutExtension$.css" />
|
||||
<option name="checkSyntaxErrors" value="true" />
|
||||
<option name="description" />
|
||||
<option name="exitCodeBehavior" value="ERROR" />
|
||||
<option name="fileExtension" value="scss" />
|
||||
<option name="immediateSync" value="true" />
|
||||
<option name="name" value="SCSS" />
|
||||
<option name="output" value="../css/$FileNameWithoutExtension$.css:../css/$FileNameWithoutExtension$.css.map" />
|
||||
<option name="outputFilters">
|
||||
<array />
|
||||
</option>
|
||||
<option name="outputFromStdout" value="false" />
|
||||
<option name="program" value="sass" />
|
||||
<option name="runOnExternalChanges" value="true" />
|
||||
<option name="scopeName" value="Project Files" />
|
||||
<option name="trackOnlyRoot" value="true" />
|
||||
<option name="workingDir" value="$FileDir$" />
|
||||
<envs />
|
||||
</TaskOptions>
|
||||
</component>
|
||||
</project>
|
662
LICENSE
|
@ -1,7 +1,661 @@
|
|||
Copyright 2019 Maël G.
|
||||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
Preamble
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for the
|
||||
specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
|
66
README.md
|
@ -1,66 +0,0 @@
|
|||
# Gnous.eu
|
||||
|
||||
![https://git.gnous.eu/gnouseu/gnousdoteu/raw/branch/master/public/img/gnous.png](https://git.gnous.eu/gnouseu/gnousdoteu/raw/branch/master/public/img/gnous.png)
|
||||
|
||||
[![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/uses-html.svg)](https://forthebadge.com)
|
||||
|
||||
Main website of [Gnous.eu](https://gnous.eu/?lang=en), the French speaking community of free software enthusiasts since 2017.
|
||||
|
||||
This website use Smarty template engine and Spectre CSS framework.
|
||||
|
||||
This project is **stable** and is already in production.
|
||||
|
||||
## Deployment
|
||||
|
||||
### Requirements :
|
||||
|
||||
To deploy this website you need :
|
||||
|
||||
1. PHP7+
|
||||
2. Composer (only for **developpement**)
|
||||
3. A webserver (NGINX is recommanded)
|
||||
4. At least 1.5 Gb of hard drive
|
||||
5. modrewrite and .htaccess enabled (in the case of apache)
|
||||
6. Git
|
||||
|
||||
### Installation :
|
||||
|
||||
* Clone the Git repository :
|
||||
``git clone https://git.gnous.eu/gnouseu/gnousdoteu``
|
||||
|
||||
* Make our webserver pointing to ``public`` folder. The main folder should'nt be accessible.
|
||||
|
||||
* Allow ``/public/index.php`` to write ``/public/templates_c``.
|
||||
|
||||
* Make our webserver serve ``/public/index.php`` for all pages **and conserving args** :
|
||||
|
||||
eg for NGINX (in ``server{``) :
|
||||
|
||||
```
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
}
|
||||
```
|
||||
|
||||
* Make our webserver serve it for 404 and 403 too :
|
||||
|
||||
eg for NGINX (in ``server{``) :
|
||||
|
||||
```
|
||||
error_page 404 /index.php;
|
||||
error_page 403 /index.php;
|
||||
```
|
||||
|
||||
* If you use modpagespeed, disable it for ``/img/gnous.svg``:
|
||||
|
||||
eg for NGINX-modpagespeed (in ``server{``) :
|
||||
|
||||
```
|
||||
pagespeed Disallow "*/img/gnous.svg";
|
||||
```
|
||||
|
||||
* Reload your webserver and check if all is working
|
||||
|
||||
### License :
|
||||
|
||||
This project is under [MIT license](LICENSE)
|
0
apps/__init__.py
Normal file
0
apps/gnous_eu/__init__.py
Normal file
42
apps/gnous_eu/admin.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from apps.gnous_eu.models import Service, Partner
|
||||
|
||||
|
||||
class ServicesAdmin(admin.ModelAdmin):
|
||||
list_display = (
|
||||
"id",
|
||||
"name",
|
||||
"sources",
|
||||
"hosted",
|
||||
"domain_tag",
|
||||
"image_tag",
|
||||
"hidden",
|
||||
)
|
||||
fieldsets = [
|
||||
("Global", {"fields": ["name", "domain", "photo"]}),
|
||||
("Descriptions", {"fields": ["description", "description_en"]}),
|
||||
("Types", {"fields": ["sources", "hosted"]}),
|
||||
("Misc", {"fields": ["hidden"]}),
|
||||
]
|
||||
|
||||
|
||||
admin.site.register(Service, ServicesAdmin)
|
||||
|
||||
|
||||
class PartnersAdmin(admin.ModelAdmin):
|
||||
list_display = (
|
||||
"id",
|
||||
"name",
|
||||
"domain_tag",
|
||||
"image_tag",
|
||||
"hidden",
|
||||
)
|
||||
fieldsets = [
|
||||
("Global", {"fields": ["name", "domain", "photo"]}),
|
||||
("Descriptions", {"fields": ["description", "description_en"]}),
|
||||
("Misc", {"fields": ["hidden"]}),
|
||||
]
|
||||
|
||||
|
||||
admin.site.register(Partner, PartnersAdmin)
|
10
apps/gnous_eu/apps.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from django.apps import AppConfig
|
||||
from suit.apps import DjangoSuitConfig
|
||||
|
||||
|
||||
class GnousEuConfig(AppConfig):
|
||||
name = "apps.gnous_eu"
|
||||
|
||||
|
||||
class SuitConfig(DjangoSuitConfig):
|
||||
layout = "vertical"
|
48
apps/gnous_eu/migrations/0001_initial.py
Normal file
|
@ -0,0 +1,48 @@
|
|||
# Generated by Django 3.0.2 on 2020-05-15 16:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = []
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="Service",
|
||||
fields=[
|
||||
("id", models.AutoField(primary_key=True, serialize=False)),
|
||||
("name", models.CharField(max_length=150)),
|
||||
("description", models.TextField()),
|
||||
("photo", models.ImageField(upload_to="services")),
|
||||
(
|
||||
"sources",
|
||||
models.CharField(
|
||||
choices=[
|
||||
("CLOSED", "Sources closes"),
|
||||
("OPEN", "Sources ouvertes"),
|
||||
("UNK", "Inconnu"),
|
||||
],
|
||||
default="UNK",
|
||||
max_length=10,
|
||||
),
|
||||
),
|
||||
(
|
||||
"hosted",
|
||||
models.CharField(
|
||||
choices=[
|
||||
("FED", "Fédéré"),
|
||||
("CENT", "Centralisé"),
|
||||
("UNK", "Inconnu"),
|
||||
],
|
||||
default="UNK",
|
||||
max_length=10,
|
||||
),
|
||||
),
|
||||
("domain", models.CharField(max_length=150)),
|
||||
("hidden", models.BooleanField(default=False)),
|
||||
],
|
||||
),
|
||||
]
|
18
apps/gnous_eu/migrations/0002_service_description_en.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.0.2 on 2020-05-16 12:28
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('gnous_eu', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='service',
|
||||
name='description_en',
|
||||
field=models.TextField(null=True),
|
||||
),
|
||||
]
|
25
apps/gnous_eu/migrations/0003_partner.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Generated by Django 3.0.2 on 2020-06-18 23:05
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('gnous_eu', '0002_service_description_en'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Partner',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('name', models.CharField(max_length=150)),
|
||||
('description', models.TextField()),
|
||||
('description_en', models.TextField(null=True)),
|
||||
('photo', models.ImageField(upload_to='partner')),
|
||||
('domain', models.CharField(max_length=150)),
|
||||
('hidden', models.BooleanField(default=False)),
|
||||
],
|
||||
),
|
||||
]
|
0
apps/gnous_eu/migrations/__init__.py
Normal file
67
apps/gnous_eu/models.py
Normal file
|
@ -0,0 +1,67 @@
|
|||
from django.db import models
|
||||
from django.conf import settings
|
||||
from django.utils.safestring import mark_safe
|
||||
from django.utils.translation import gettext
|
||||
|
||||
|
||||
class Service(models.Model):
|
||||
class SourcesType(models.TextChoices):
|
||||
closed = "CLOSED", gettext("Sources closes")
|
||||
open = "OPEN", gettext("Sources ouvertes")
|
||||
unknown = "UNK", gettext("Inconnu")
|
||||
|
||||
class HostedType(models.TextChoices):
|
||||
federated = "FED", gettext("Fédéré")
|
||||
centralized = "CENT", gettext("Centralisé")
|
||||
unknown = "UNK", gettext("Inconnu")
|
||||
|
||||
id = models.AutoField(primary_key=True)
|
||||
name = models.CharField(max_length=150)
|
||||
description = models.TextField()
|
||||
description_en = models.TextField(null=True)
|
||||
photo = models.ImageField(upload_to="services")
|
||||
|
||||
sources = models.CharField(
|
||||
max_length=10, choices=SourcesType.choices, default=SourcesType.unknown,
|
||||
)
|
||||
hosted = models.CharField(
|
||||
max_length=10, choices=HostedType.choices, default=HostedType.unknown,
|
||||
)
|
||||
|
||||
domain = models.CharField(max_length=150)
|
||||
hidden = models.BooleanField(default=False)
|
||||
|
||||
def domain_tag(self):
|
||||
return mark_safe(
|
||||
f'<a href="http://{self.domain}" target="_blank">{self.domain}</a>'
|
||||
)
|
||||
|
||||
def image_tag(self):
|
||||
return mark_safe(
|
||||
f"<img src="
|
||||
f'"{settings.MEDIA_URL + self.photo.name}"'
|
||||
f' width="50" height="50">'
|
||||
)
|
||||
|
||||
|
||||
class Partner(models.Model):
|
||||
id = models.AutoField(primary_key=True)
|
||||
name = models.CharField(max_length=150)
|
||||
description = models.TextField()
|
||||
description_en = models.TextField(null=True)
|
||||
photo = models.ImageField(upload_to="partner")
|
||||
|
||||
domain = models.CharField(max_length=150)
|
||||
hidden = models.BooleanField(default=False)
|
||||
|
||||
def domain_tag(self):
|
||||
return mark_safe(
|
||||
f'<a href="http://{self.domain}" target="_blank">{self.domain}</a>'
|
||||
)
|
||||
|
||||
def image_tag(self):
|
||||
return mark_safe(
|
||||
f"<img src="
|
||||
f'"{settings.MEDIA_URL + self.photo.name}"'
|
||||
f' width="50" height="50">'
|
||||
)
|
BIN
apps/gnous_eu/static/images/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
apps/gnous_eu/static/images/gnous.png
Normal file
After Width: | Height: | Size: 14 KiB |
262
apps/gnous_eu/static/images/gnous.svg
Normal file
|
@ -0,0 +1,262 @@
|
|||
<?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 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="128px" height="128px" viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve"> <image id="image0" width="128" height="128" x="0" y="0"
|
||||
xlink:href="data:image/png;base64,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
|
||||
rkJggg==" />
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
53
apps/gnous_eu/static/images/icons/en.svg
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<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"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||
<g>
|
||||
<path style="fill:#D80027;" d="M244.87,256H512c0-23.106-3.08-45.49-8.819-66.783H244.87V256z"/>
|
||||
<path style="fill:#D80027;" d="M244.87,122.435h229.556c-15.671-25.572-35.708-48.175-59.07-66.783H244.87V122.435z"/>
|
||||
<path style="fill:#D80027;" d="M256,512c60.249,0,115.626-20.824,159.356-55.652H96.644C140.374,491.176,195.751,512,256,512z"/>
|
||||
<path style="fill:#D80027;" d="M37.574,389.565h436.852c12.581-20.529,22.338-42.969,28.755-66.783H8.819
|
||||
C15.236,346.596,24.993,369.036,37.574,389.565z"/>
|
||||
</g>
|
||||
<path style="fill:#0052B4;" d="M118.584,39.978h23.329l-21.7,15.765l8.289,25.509l-21.699-15.765L85.104,81.252l7.16-22.037
|
||||
C73.158,75.13,56.412,93.776,42.612,114.552h7.475l-13.813,10.035c-2.152,3.59-4.216,7.237-6.194,10.938l6.596,20.301l-12.306-8.941
|
||||
c-3.059,6.481-5.857,13.108-8.372,19.873l7.267,22.368h26.822l-21.7,15.765l8.289,25.509l-21.699-15.765l-12.998,9.444
|
||||
C0.678,234.537,0,245.189,0,256h256c0-141.384,0-158.052,0-256C205.428,0,158.285,14.67,118.584,39.978z M128.502,230.4
|
||||
l-21.699-15.765L85.104,230.4l8.289-25.509l-21.7-15.765h26.822l8.288-25.509l8.288,25.509h26.822l-21.7,15.765L128.502,230.4z
|
||||
M120.213,130.317l8.289,25.509l-21.699-15.765l-21.699,15.765l8.289-25.509l-21.7-15.765h26.822l8.288-25.509l8.288,25.509h26.822
|
||||
L120.213,130.317z M220.328,230.4l-21.699-15.765L176.93,230.4l8.289-25.509l-21.7-15.765h26.822l8.288-25.509l8.288,25.509h26.822
|
||||
l-21.7,15.765L220.328,230.4z M212.039,130.317l8.289,25.509l-21.699-15.765l-21.699,15.765l8.289-25.509l-21.7-15.765h26.822
|
||||
l8.288-25.509l8.288,25.509h26.822L212.039,130.317z M212.039,55.743l8.289,25.509l-21.699-15.765L176.93,81.252l8.289-25.509
|
||||
l-21.7-15.765h26.822l8.288-25.509l8.288,25.509h26.822L212.039,55.743z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
38
apps/gnous_eu/static/images/icons/fr.svg
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<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"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||
<path style="fill:#D80027;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
|
||||
<path style="fill:#0052B4;" d="M0,256c0,110.071,69.473,203.906,166.957,240.077V15.923C69.473,52.094,0,145.929,0,256z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 841 B |
BIN
apps/gnous_eu/static/images/icons/tipeee-tip-btn.png
Normal file
After Width: | Height: | Size: 15 KiB |
48
apps/gnous_eu/static/images/illustrations/bot.svg
Normal file
|
@ -0,0 +1,48 @@
|
|||
<svg id="e9b383de-0ed4-41c7-955a-d31167ca9f18" xmlns="http://www.w3.org/2000/svg" width="844.49976" height="494.24596" viewBox="0 0 844.49976 494.24596">
|
||||
<title>chat_bot</title>
|
||||
<path d="M225.34214,665.935a4.77664,4.77664,0,0,0-2.81646.99092c-2.40045-6.34374-6.11652-10.42042-10.29133-10.42042s-7.89087,4.07668-10.29132,10.42042a4.77669,4.77669,0,0,0-2.81646-.99092c-4.74294,0-8.58786,8.02128-8.58786,17.916H233.93C233.93,673.95626,230.08508,665.935,225.34214,665.935Z"
|
||||
transform="translate(-177.75012 -202.87702)" fill="#ffffff"/>
|
||||
<rect y="479.97356" width="220" height="2" fill="#3f3d56"/>
|
||||
<path d="M1007.34214,623.909a4.77664,4.77664,0,0,0-2.81646.99092c-2.40045-6.34374-6.11652-10.42042-10.29133-10.42042s-7.89087,4.07668-10.29132,10.42042a4.77669,4.77669,0,0,0-2.81646-.99092c-4.74294,0-8.58786,8.02128-8.58786,17.916H1015.93C1015.93,631.93026,1012.08508,623.909,1007.34214,623.909Z"
|
||||
transform="translate(-177.75012 -202.87702)" fill="#ffffff"/>
|
||||
<path d="M913.97887,294.73032H704.48915v-4.31776H609.49836v4.31776H399.14509a14.17039,14.17039,0,0,0-14.1704,14.1704V595.75656a14.17044,14.17044,0,0,0,14.1704,14.17046H913.97887a14.17044,14.17044,0,0,0,14.1704-14.17046V308.90072A14.17039,14.17039,0,0,0,913.97887,294.73032Z"
|
||||
transform="translate(-177.75012 -202.87702)" fill="#3f3d56"/>
|
||||
<rect x="226.22703" y="116.89232" width="505.16998" height="284.98004" opacity="0.2"/>
|
||||
<circle cx="478.38008" cy="103.94303" r="5.18132" fill="#ffffff"/>
|
||||
<rect x="111.50024" y="436.948" width="732.99951" height="2" fill="#3f3d56"/>
|
||||
<path d="M725.58249,426.24265V405.15879a25.86891,25.86891,0,0,0-25.86893-25.86893H678.6297c0-2.846-9.14594-5.17779-20.76758-5.39878V348.46519a14.447,14.447,0,1,0-3.61175,0v25.42589c-11.62164.221-20.76758,2.55274-20.76758,5.39878H608.78717a25.86891,25.86891,0,0,0-25.86893,25.86893v21.08386c-2.99209,0-5.41763,10.10647-5.41763,22.57346s2.42554,22.57346,5.41763,22.57346v24.69561a25.86891,25.86891,0,0,0,25.86893,25.86893h90.92639a25.86891,25.86891,0,0,0,25.86893-25.86893V471.38957c2.99209,0,5.41763-10.10648,5.41763-22.57346S728.57458,426.24265,725.58249,426.24265Z"
|
||||
transform="translate(-177.75012 -202.87702)" fill="#ffffff"/>
|
||||
<path d="M436.21643,184.53924h80.56769a22.92181,22.92181,0,0,1,22.92181,22.92181V288.0288a22.92181,22.92181,0,0,1-22.92181,22.92181H436.21637a22.92181,22.92181,0,0,1-22.92181-22.92181V207.46111A22.92188,22.92188,0,0,1,436.21643,184.53924Z" fill="#3f3d56"/>
|
||||
<path d="M625.35634,447.4617a16.27123,16.27123,0,0,1-16.25289-16.25289.90294.90294,0,1,1,1.80588,0,14.447,14.447,0,1,0,28.894,0,.90294.90294,0,0,1,1.80588,0A16.27123,16.27123,0,0,1,625.35634,447.4617Z" transform="translate(-177.75012 -202.87702)" fill="#ffffff"/>
|
||||
<path d="M654.25037,478.1616a12.65534,12.65534,0,0,1-12.64114-12.64113.90294.90294,0,0,1,1.80588,0,10.83526,10.83526,0,0,0,21.67052,0,.90293.90293,0,1,1,1.80587,0A12.65533,12.65533,0,0,1,654.25037,478.1616Z" transform="translate(-177.75012 -202.87702)" fill="#ffffff"/>
|
||||
<path d="M683.14439,447.4617a16.27123,16.27123,0,0,1-16.25289-16.25289.90294.90294,0,1,1,1.80588,0,14.447,14.447,0,1,0,28.894,0,.90294.90294,0,0,1,1.80588,0A16.27151,16.27151,0,0,1,683.14439,447.4617Z" transform="translate(-177.75012 -202.87702)" fill="#ffffff"/>
|
||||
<circle cx="447.60622" cy="229.23473" r="8.12644" fill="#ffffff"/>
|
||||
<circle cx="505.39427" cy="229.23473" r="8.12644" fill="#ffffff"/>
|
||||
<ellipse cx="476.50024" cy="267.15814" rx="7.22351" ry="3.61175" fill="#ffffff"/>
|
||||
<path d="M942.33358,599.56437H893.03147v-3.55219a.70429.70429,0,0,0-.70432-.70431H875.42357a.70429.70429,0,0,0-.70432.70431v3.55219H864.15451v-3.55219a.70429.70429,0,0,0-.70431-.70431H846.54661a.70428.70428,0,0,0-.70431.70431v3.55219H835.27756v-3.55219a.70429.70429,0,0,0-.70432-.70431H817.66966a.70429.70429,0,0,0-.70432.70431v3.55219H806.4006v-3.55219a.70428.70428,0,0,0-.70431-.70431H788.79271a.70429.70429,0,0,0-.70432.70431v3.55219H777.52365v-3.55219a.70429.70429,0,0,0-.70432-.70431H759.91575a.70428.70428,0,0,0-.70431.70431v3.55219H748.6467v-3.55219a.70429.70429,0,0,0-.70432-.70431H731.0388a.70429.70429,0,0,0-.70432.70431v3.55219H719.76974v-3.55219a.70428.70428,0,0,0-.70431-.70431H586.654a.70429.70429,0,0,0-.70432.70431v3.55219H575.385v-3.55219a.70428.70428,0,0,0-.70431-.70431H557.77707a.70429.70429,0,0,0-.70431.70431v3.55219H546.508v-3.55219a.70429.70429,0,0,0-.70432-.70431H528.90012a.70429.70429,0,0,0-.70432.70431v3.55219H517.63107v-3.55219a.70429.70429,0,0,0-.70432-.70431H500.02317a.70429.70429,0,0,0-.70432.70431v3.55219H488.75411v-3.55219a.70429.70429,0,0,0-.70431-.70431H471.14621a.70428.70428,0,0,0-.70431.70431v3.55219H459.87716v-3.55219a.70429.70429,0,0,0-.70432-.70431H442.26926a.70429.70429,0,0,0-.70432.70431v3.55219H431.0002v-3.55219a.70428.70428,0,0,0-.70431-.70431H413.39231a.70429.70429,0,0,0-.70432.70431v3.55219H380.28946A16.90359,16.90359,0,0,0,363.38587,616.468v7.6434a16.90359,16.90359,0,0,0,16.90359,16.90354H942.33358a16.90358,16.90358,0,0,0,16.90358-16.90354V616.468A16.90359,16.90359,0,0,0,942.33358,599.56437Z"
|
||||
transform="translate(-177.75012 -202.87702)" fill="#3f3d56"/>
|
||||
<rect x="303.50024" y="317.948" width="337" height="2" fill="#ffffff"/>
|
||||
<path d="M505.25037,519.825h-83a555.42428,555.42428,0,0,0,0-94h83C500.68054,458.01945,500.41327,489.40312,505.25037,519.825Z" transform="translate(-177.75012 -202.87702)" fill="#d0cde1"/>
|
||||
<rect x="256.50024" y="241.948" width="60" height="4" fill="#3f3d56"/>
|
||||
<rect x="256.50024" y="254.948" width="60" height="4" fill="#3f3d56"/>
|
||||
<rect x="256.50024" y="267.948" width="60" height="4" fill="#3f3d56"/>
|
||||
<rect x="256.50024" y="280.948" width="60" height="4" fill="#3f3d56"/>
|
||||
<rect x="256.50024" y="293.948" width="60" height="4" fill="#3f3d56"/>
|
||||
<path d="M284.69436,206.08439s-13.04116-4.65756-21.42475,13.97266-21.42476,39.12346-21.42476,39.12346l7.45209,1.863s1.863-13.04115,6.52058-14.90417l-1.863,16.76719s55.89065,19.56173,81.04145-1.863l-.93151-6.52058s3.726.93151,3.726,6.52058L340.585,258.249s-2.79453-5.58907-11.17813-13.04116c-5.50263-4.89122-7.39357-14.19672-8.04338-20.01467a24.2202,24.2202,0,0,0-5.57613-13.18957C310.216,205.54675,300.06429,198.68405,284.69436,206.08439Z"
|
||||
transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<polygon points="69.335 414.136 73.335 437.136 89.335 434.136 92.335 414.136 69.335 414.136" fill="#ffb9b9"/>
|
||||
<path d="M270.085,630.01324l-22,2,1,18-1,23s-13,26,6,24,17-12,17-12l5-6-3-15Z" transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<polygon points="159.335 414.136 155.335 437.136 139.335 434.136 136.335 414.136 159.335 414.136" fill="#ffb9b9"/>
|
||||
<path d="M314.085,630.01324l22,2-1,18,1,23s13,26-6,24-17-12-17-12l-5-6,3-15Z" transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<circle cx="113.33489" cy="42.13622" r="23" fill="#ffb9b9"/>
|
||||
<path d="M276.085,257.01324l3,36,28-1s-8-23-3-32Z" transform="translate(-177.75012 -202.87702)" fill="#ffb9b9"/>
|
||||
<path d="M292.085,286.01324l11.51772-7.18371,12.48228,6.18371,20,9-7,85s16,53,13,79,33,156,4,162-50,12-51,2-3-163-3-163-3,162-15,164-64,10-60-2,31-222,44-234l2-10-17-81,31.92411-15.91067Z" transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<path d="M232.085,410.01324l-1,41s-9.626,40.47857,6.687,40.23929,4.313-40.23929,4.313-40.23929l7-40Z" transform="translate(-177.75012 -202.87702)" fill="#ffb9b9"/>
|
||||
<path d="M383.29816,366.98218l28.10344,29.86966s34.18015,23.72533,21.87052,34.4325S403.20877,404.192,403.20877,404.192l-31.905-25.12114Z" transform="translate(-177.75012 -202.87702)" fill="#ffb9b9"/>
|
||||
<polygon points="83.835 181.636 152.325 179.536 151.435 174.886 151.435 174.866 85.235 173.666 83.835 181.636" fill="#d0cde1"/>
|
||||
<circle cx="97.83489" cy="177.63622" r="6" fill="#2f2e41"/>
|
||||
<path d="M254.085,297.01324l-6.5-1.5s-8.5,3.5-10.5,14.5-28,97-15,102,32,7,32,5,8-77,8-77Z" transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<path d="M315.25037,300.825l20.83464-6.81178s10,0,10,11c0,4.53782,19.16536,41.81178,19.16536,41.81178s46.04964,32.82506,39,34c-12,2-19,23-19,23l-45-40Z" transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<path d="M263.0337,246.72609s7.45209-10.24662,13.97267-12.10965,7.45208-11.17813,7.45208-11.17813S301.22565,242.06853,311.47227,243s.93151-22.35626.93151-22.35626l-18.63022-4.65755-17.6987,1.863-13.97267,9.31511Z" transform="translate(-177.75012 -202.87702)" fill="#2f2e41"/>
|
||||
<ellipse cx="90.83489" cy="38.63622" rx="3" ry="4.5" fill="#ffb9b9"/>
|
||||
</svg>
|
After Width: | Height: | Size: 8.4 KiB |
1
apps/gnous_eu/static/images/illustrations/services.svg
Normal file
After Width: | Height: | Size: 6.3 KiB |
0
apps/gnous_eu/static/javascripts/main.js
Normal file
6
apps/gnous_eu/static/javascripts/turbolinks.js
Normal file
167
apps/gnous_eu/static/javascripts/uikit/uikit-icons.js
Normal file
|
@ -0,0 +1,167 @@
|
|||
/*! UIkit 3.3.0 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
|
||||
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
typeof define === 'function' && define.amd ? define('uikiticons', factory) :
|
||||
(global = global || self, global.UIkitIcons = factory());
|
||||
}(this, (function () { 'use strict';
|
||||
|
||||
function plugin(UIkit) {
|
||||
|
||||
if (plugin.installed) {
|
||||
return;
|
||||
}
|
||||
|
||||
UIkit.icon.add({
|
||||
"500px": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z\"/><path d=\"M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z\"/><path d=\"M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z\"/><path d=\"M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z\"/></svg>",
|
||||
"album": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"5\" y=\"2\" width=\"10\" height=\"1\"/><rect x=\"3\" y=\"4\" width=\"14\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"6.5\" width=\"17\" height=\"11\"/></svg>",
|
||||
"arrow-down": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"10.5,16.08 5.63,10.66 6.37,10 10.5,14.58 14.63,10 15.37,10.66\"/><line fill=\"none\" stroke=\"#000\" x1=\"10.5\" y1=\"4\" x2=\"10.5\" y2=\"15\"/></svg>",
|
||||
"arrow-left": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"10 14 5 9.5 10 5\"/><line fill=\"none\" stroke=\"#000\" x1=\"16\" y1=\"9.5\" x2=\"5\" y2=\"9.52\"/></svg>",
|
||||
"arrow-right": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"10 5 15 9.5 10 14\"/><line fill=\"none\" stroke=\"#000\" x1=\"4\" y1=\"9.5\" x2=\"15\" y2=\"9.5\"/></svg>",
|
||||
"arrow-up": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4\"/><line fill=\"none\" stroke=\"#000\" x1=\"10.5\" y1=\"16\" x2=\"10.5\" y2=\"5\"/></svg>",
|
||||
"ban": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10\" r=\"9\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"4\" y1=\"3.5\" x2=\"16\" y2=\"16.5\"/></svg>",
|
||||
"behance": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.5,10.6c-0.4-0.5-0.9-0.9-1.6-1.1c1.7-1,2.2-3.2,0.7-4.7C7.8,4,6.3,4,5.2,4C3.5,4,1.7,4,0,4v12c1.7,0,3.4,0,5.2,0 c1,0,2.1,0,3.1-0.5C10.2,14.6,10.5,12.3,9.5,10.6L9.5,10.6z M5.6,6.1c1.8,0,1.8,2.7-0.1,2.7c-1,0-2,0-2.9,0V6.1H5.6z M2.6,13.8v-3.1 c1.1,0,2.1,0,3.2,0c2.1,0,2.1,3.2,0.1,3.2L2.6,13.8z\"/><path d=\"M19.9,10.9C19.7,9.2,18.7,7.6,17,7c-4.2-1.3-7.3,3.4-5.3,7.1c0.9,1.7,2.8,2.3,4.7,2.1c1.7-0.2,2.9-1.3,3.4-2.9h-2.2 c-0.4,1.3-2.4,1.5-3.5,0.6c-0.4-0.4-0.6-1.1-0.6-1.7H20C20,11.7,19.9,10.9,19.9,10.9z M13.5,10.6c0-1.6,2.3-2.7,3.5-1.4 c0.4,0.4,0.5,0.9,0.6,1.4H13.5L13.5,10.6z\"/><rect x=\"13\" y=\"4\" width=\"5\" height=\"1.4\"/></svg>",
|
||||
"bell": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M17,15.5 L3,15.5 C2.99,14.61 3.79,13.34 4.1,12.51 C4.58,11.3 4.72,10.35 5.19,7.01 C5.54,4.53 5.89,3.2 7.28,2.16 C8.13,1.56 9.37,1.5 9.81,1.5 L9.96,1.5 C9.96,1.5 11.62,1.41 12.67,2.17 C14.08,3.2 14.42,4.54 14.77,7.02 C15.26,10.35 15.4,11.31 15.87,12.52 C16.2,13.34 17.01,14.61 17,15.5 L17,15.5 Z\"/><path fill=\"none\" stroke=\"#000\" d=\"M12.39,16 C12.39,17.37 11.35,18.43 9.91,18.43 C8.48,18.43 7.42,17.37 7.42,16\"/></svg>",
|
||||
"bold": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5,15.3 C5.66,15.3 5.9,15 5.9,14.53 L5.9,5.5 C5.9,4.92 5.56,4.7 5,4.7 L5,4 L8.95,4 C12.6,4 13.7,5.37 13.7,6.9 C13.7,7.87 13.14,9.17 10.86,9.59 L10.86,9.7 C13.25,9.86 14.29,11.28 14.3,12.54 C14.3,14.47 12.94,16 9,16 L5,16 L5,15.3 Z M9,9.3 C11.19,9.3 11.8,8.5 11.85,7 C11.85,5.65 11.3,4.8 9,4.8 L7.67,4.8 L7.67,9.3 L9,9.3 Z M9.185,15.22 C11.97,15 12.39,14 12.4,12.58 C12.4,11.15 11.39,10 9,10 L7.67,10 L7.67,15 L9.18,15 Z\"/></svg>",
|
||||
"bolt": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.74,20 L7.73,12 L3,12 L15.43,1 L12.32,9 L17.02,9 L4.74,20 L4.74,20 L4.74,20 Z M9.18,11 L7.1,16.39 L14.47,10 L10.86,10 L12.99,4.67 L5.61,11 L9.18,11 L9.18,11 L9.18,11 Z\"/></svg>",
|
||||
"bookmark": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" points=\"5.5 1.5 15.5 1.5 15.5 17.5 10.5 12.5 5.5 17.5\"/></svg>",
|
||||
"calendar": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 2,3 2,17 18,17 18,3 2,3 Z M 17,16 3,16 3,8 17,8 17,16 Z M 17,7 3,7 3,4 17,4 17,7 Z\"/><rect width=\"1\" height=\"3\" x=\"6\" y=\"2\"/><rect width=\"1\" height=\"3\" x=\"13\" y=\"2\"/></svg>",
|
||||
"camera": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10.8\" r=\"3.8\"/><path fill=\"none\" stroke=\"#000\" d=\"M1,4.5 C0.7,4.5 0.5,4.7 0.5,5 L0.5,17 C0.5,17.3 0.7,17.5 1,17.5 L19,17.5 C19.3,17.5 19.5,17.3 19.5,17 L19.5,5 C19.5,4.7 19.3,4.5 19,4.5 L13.5,4.5 L13.5,2.9 C13.5,2.6 13.3,2.5 13,2.5 L7,2.5 C6.7,2.5 6.5,2.6 6.5,2.9 L6.5,4.5 L1,4.5 L1,4.5 Z\"/></svg>",
|
||||
"cart": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"7.3\" cy=\"17.3\" r=\"1.4\"/><circle cx=\"13.3\" cy=\"17.3\" r=\"1.4\"/><polyline fill=\"none\" stroke=\"#000\" points=\"0 2 3.2 4 5.3 12.5 16 12.5 18 6.5 8 6.5\"/></svg>",
|
||||
"check": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"4,10 8,15 17,4\"/></svg>",
|
||||
"chevron-double-left": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"10 14 6 10 10 6\"/><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"14 14 10 10 14 6\"/></svg>",
|
||||
"chevron-double-right": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"10 6 14 10 10 14\"/><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"6 6 10 10 6 14\"/></svg>",
|
||||
"chevron-down": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"16 7 10 13 4 7\"/></svg>",
|
||||
"chevron-left": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"13 16 7 10 13 4\"/></svg>",
|
||||
"chevron-right": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"7 4 13 10 7 16\"/></svg>",
|
||||
"chevron-up": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" points=\"4 13 10 7 16 13\"/></svg>",
|
||||
"clock": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10\" r=\"9\"/><rect x=\"9\" y=\"4\" width=\"1\" height=\"7\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M13.018,14.197 L9.445,10.625\"/></svg>",
|
||||
"close": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.06\" d=\"M16,16 L4,4\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.06\" d=\"M16,4 L4,16\"/></svg>",
|
||||
"cloud-download": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M6.5,14.61 L3.75,14.61 C1.96,14.61 0.5,13.17 0.5,11.39 C0.5,9.76 1.72,8.41 3.3,8.2 C3.38,5.31 5.75,3 8.68,3 C11.19,3 13.31,4.71 13.89,7.02 C14.39,6.8 14.93,6.68 15.5,6.68 C17.71,6.68 19.5,8.45 19.5,10.64 C19.5,12.83 17.71,14.6 15.5,14.6 L12.5,14.6\"/><polyline fill=\"none\" stroke=\"#000\" points=\"11.75 16 9.5 18.25 7.25 16\"/><path fill=\"none\" stroke=\"#000\" d=\"M9.5,18 L9.5,9.5\"/></svg>",
|
||||
"cloud-upload": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M6.5,14.61 L3.75,14.61 C1.96,14.61 0.5,13.17 0.5,11.39 C0.5,9.76 1.72,8.41 3.31,8.2 C3.38,5.31 5.75,3 8.68,3 C11.19,3 13.31,4.71 13.89,7.02 C14.39,6.8 14.93,6.68 15.5,6.68 C17.71,6.68 19.5,8.45 19.5,10.64 C19.5,12.83 17.71,14.6 15.5,14.6 L12.5,14.6\"/><polyline fill=\"none\" stroke=\"#000\" points=\"7.25 11.75 9.5 9.5 11.75 11.75\"/><path fill=\"none\" stroke=\"#000\" d=\"M9.5,18 L9.5,9.5\"/></svg>",
|
||||
"code": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" points=\"13,4 19,10 13,16\"/><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" points=\"7,4 1,10 7,16\"/></svg>",
|
||||
"cog": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" cx=\"9.997\" cy=\"10\" r=\"3.31\"/><path fill=\"none\" stroke=\"#000\" d=\"M18.488,12.285 L16.205,16.237 C15.322,15.496 14.185,15.281 13.303,15.791 C12.428,16.289 12.047,17.373 12.246,18.5 L7.735,18.5 C7.938,17.374 7.553,16.299 6.684,15.791 C5.801,15.27 4.655,15.492 3.773,16.237 L1.5,12.285 C2.573,11.871 3.317,10.999 3.317,9.991 C3.305,8.98 2.573,8.121 1.5,7.716 L3.765,3.784 C4.645,4.516 5.794,4.738 6.687,4.232 C7.555,3.722 7.939,2.637 7.735,1.5 L12.263,1.5 C12.072,2.637 12.441,3.71 13.314,4.22 C14.206,4.73 15.343,4.516 16.225,3.794 L18.487,7.714 C17.404,8.117 16.661,8.988 16.67,10.009 C16.672,11.018 17.415,11.88 18.488,12.285 L18.488,12.285 Z\"/></svg>",
|
||||
"comment": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6,18.71 L6,14 L1,14 L1,1 L19,1 L19,14 L10.71,14 L6,18.71 L6,18.71 Z M2,13 L7,13 L7,16.29 L10.29,13 L18,13 L18,2 L2,2 L2,13 L2,13 Z\"/></svg>",
|
||||
"commenting": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" points=\"1.5,1.5 18.5,1.5 18.5,13.5 10.5,13.5 6.5,17.5 6.5,13.5 1.5,13.5\"/><circle cx=\"10\" cy=\"8\" r=\"1\"/><circle cx=\"6\" cy=\"8\" r=\"1\"/><circle cx=\"14\" cy=\"8\" r=\"1\"/></svg>",
|
||||
"comments": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"2 0.5 19.5 0.5 19.5 13\"/><path d=\"M5,19.71 L5,15 L0,15 L0,2 L18,2 L18,15 L9.71,15 L5,19.71 L5,19.71 L5,19.71 Z M1,14 L6,14 L6,17.29 L9.29,14 L17,14 L17,3 L1,3 L1,14 L1,14 L1,14 Z\"/></svg>",
|
||||
"copy": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" x=\"3.5\" y=\"2.5\" width=\"12\" height=\"16\"/><polyline fill=\"none\" stroke=\"#000\" points=\"5 0.5 17.5 0.5 17.5 17\"/></svg>",
|
||||
"credit-card": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"4.5\" width=\"17\" height=\"12\"/><rect x=\"1\" y=\"7\" width=\"18\" height=\"3\"/></svg>",
|
||||
"database": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><ellipse fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"4.64\" rx=\"7.5\" ry=\"3.14\"/><path fill=\"none\" stroke=\"#000\" d=\"M17.5,8.11 C17.5,9.85 14.14,11.25 10,11.25 C5.86,11.25 2.5,9.84 2.5,8.11\"/><path fill=\"none\" stroke=\"#000\" d=\"M17.5,11.25 C17.5,12.99 14.14,14.39 10,14.39 C5.86,14.39 2.5,12.98 2.5,11.25\"/><path fill=\"none\" stroke=\"#000\" d=\"M17.49,4.64 L17.5,14.36 C17.5,16.1 14.14,17.5 10,17.5 C5.86,17.5 2.5,16.09 2.5,14.36 L2.5,4.64\"/></svg>",
|
||||
"desktop": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"8\" y=\"15\" width=\"1\" height=\"2\"/><rect x=\"11\" y=\"15\" width=\"1\" height=\"2\"/><rect x=\"5\" y=\"16\" width=\"10\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"3.5\" width=\"17\" height=\"11\"/></svg>",
|
||||
"download": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"14,10 9.5,14.5 5,10\"/><rect x=\"3\" y=\"17\" width=\"13\" height=\"1\"/><line fill=\"none\" stroke=\"#000\" x1=\"9.5\" y1=\"13.91\" x2=\"9.5\" y2=\"3\"/></svg>",
|
||||
"dribbble": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" d=\"M1.3,8.9c0,0,5,0.1,8.6-1c1.4-0.4,2.6-0.9,4-1.9 c1.4-1.1,2.5-2.5,2.5-2.5\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" d=\"M3.9,16.6c0,0,1.7-2.8,3.5-4.2 c1.8-1.3,4-2,5.7-2.2C16,10,19,10.6,19,10.6\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" d=\"M6.9,1.6c0,0,3.3,4.6,4.2,6.8 c0.4,0.9,1.3,3.1,1.9,5.2c0.6,2,0.9,4.4,0.9,4.4\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" cx=\"10\" cy=\"10\" r=\"9\"/></svg>",
|
||||
"etsy": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\"><path d=\"M8,4.26C8,4.07,8,4,8.31,4h4.46c.79,0,1.22.67,1.53,1.91l.25,1h.76c.14-2.82.26-4,.26-4S13.65,3,12.52,3H6.81L3.75,2.92v.84l1,.2c.73.11.9.27,1,1,0,0,.06,2,.06,5.17s-.06,5.14-.06,5.14c0,.59-.23.81-1,.94l-1,.2v.84l3.06-.1h5.11c1.15,0,3.82.1,3.82.1,0-.7.45-3.88.51-4.22h-.73l-.76,1.69a2.25,2.25,0,0,1-2.45,1.47H9.4c-1,0-1.44-.4-1.44-1.24V10.44s2.16,0,2.86.06c.55,0,.85.19,1.06,1l.23,1H13L12.9,9.94,13,7.41h-.85l-.28,1.13c-.16.74-.28.84-1,1-1,.1-2.89.09-2.89.09Z\"/></svg>",
|
||||
"expand": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"13 2 18 2 18 7 17 7 17 3 13 3\"/><polygon points=\"2 13 3 13 3 17 7 17 7 18 2 18\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M11,9 L17,3\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M3,17 L9,11\"/></svg>",
|
||||
"facebook": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11,10h2.6l0.4-3H11V5.3c0-0.9,0.2-1.5,1.5-1.5H14V1.1c-0.3,0-1-0.1-2.1-0.1C9.6,1,8,2.4,8,5v2H5.5v3H8v8h3V10z\"/></svg>",
|
||||
"file-edit": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M18.65,1.68 C18.41,1.45 18.109,1.33 17.81,1.33 C17.499,1.33 17.209,1.45 16.98,1.68 L8.92,9.76 L8,12.33 L10.55,11.41 L18.651,3.34 C19.12,2.87 19.12,2.15 18.65,1.68 L18.65,1.68 L18.65,1.68 Z\"/><polyline fill=\"none\" stroke=\"#000\" points=\"16.5 8.482 16.5 18.5 3.5 18.5 3.5 1.5 14.211 1.5\"/></svg>",
|
||||
"file-pdf": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" width=\"13\" height=\"17\" x=\"3.5\" y=\"1.5\"/><path d=\"M14.65 11.67c-.48.3-1.37-.19-1.79-.37a4.65 4.65 0 0 1 1.49.06c.35.1.36.28.3.31zm-6.3.06l.43-.79a14.7 14.7 0 0 0 .75-1.64 5.48 5.48 0 0 0 1.25 1.55l.2.15a16.36 16.36 0 0 0-2.63.73zM9.5 5.32c.2 0 .32.5.32.97a1.99 1.99 0 0 1-.23 1.04 5.05 5.05 0 0 1-.17-1.3s0-.71.08-.71zm-3.9 9a4.35 4.35 0 0 1 1.21-1.46l.24-.22a4.35 4.35 0 0 1-1.46 1.68zm9.23-3.3a2.05 2.05 0 0 0-1.32-.3 11.07 11.07 0 0 0-1.58.11 4.09 4.09 0 0 1-.74-.5 5.39 5.39 0 0 1-1.32-2.06 10.37 10.37 0 0 0 .28-2.62 1.83 1.83 0 0 0-.07-.25.57.57 0 0 0-.52-.4H9.4a.59.59 0 0 0-.6.38 6.95 6.95 0 0 0 .37 3.14c-.26.63-1 2.12-1 2.12-.3.58-.57 1.08-.82 1.5l-.8.44A3.11 3.11 0 0 0 5 14.16a.39.39 0 0 0 .15.42l.24.13c1.15.56 2.28-1.74 2.66-2.42a23.1 23.1 0 0 1 3.59-.85 4.56 4.56 0 0 0 2.91.8.5.5 0 0 0 .3-.21 1.1 1.1 0 0 0 .12-.75.84.84 0 0 0-.14-.25z\"/></svg>",
|
||||
"file-text": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" width=\"13\" height=\"17\" x=\"3.5\" y=\"1.5\"/><line fill=\"none\" stroke=\"#000\" x1=\"6\" x2=\"12\" y1=\"12.5\" y2=\"12.5\"/><line fill=\"none\" stroke=\"#000\" x1=\"6\" x2=\"14\" y1=\"8.5\" y2=\"8.5\"/><line fill=\"none\" stroke=\"#000\" x1=\"6\" x2=\"14\" y1=\"6.5\" y2=\"6.5\"/><line fill=\"none\" stroke=\"#000\" x1=\"6\" x2=\"14\" y1=\"10.5\" y2=\"10.5\"/></svg>",
|
||||
"file": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" x=\"3.5\" y=\"1.5\" width=\"13\" height=\"17\"/></svg>",
|
||||
"flickr": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5.5\" cy=\"9.5\" r=\"3.5\"/><circle cx=\"14.5\" cy=\"9.5\" r=\"3.5\"/></svg>",
|
||||
"folder": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" points=\"9.5 5.5 8.5 3.5 1.5 3.5 1.5 16.5 18.5 16.5 18.5 5.5\"/></svg>",
|
||||
"forward": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.47,13.11 C4.02,10.02 6.27,7.85 9.04,6.61 C9.48,6.41 10.27,6.13 11,5.91 L11,2 L18.89,9 L11,16 L11,12.13 C9.25,12.47 7.58,13.19 6.02,14.25 C3.03,16.28 1.63,18.54 1.63,18.54 C1.63,18.54 1.38,15.28 2.47,13.11 L2.47,13.11 Z M5.3,13.53 C6.92,12.4 9.04,11.4 12,10.92 L12,13.63 L17.36,9 L12,4.25 L12,6.8 C11.71,6.86 10.86,7.02 9.67,7.49 C6.79,8.65 4.58,10.96 3.49,13.08 C3.18,13.7 2.68,14.87 2.49,16 C3.28,15.05 4.4,14.15 5.3,13.53 L5.3,13.53 Z\"/></svg>",
|
||||
"foursquare": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.23,2 C15.96,2 16.4,2.41 16.5,2.86 C16.57,3.15 16.56,3.44 16.51,3.73 C16.46,4.04 14.86,11.72 14.75,12.03 C14.56,12.56 14.16,12.82 13.61,12.83 C13.03,12.84 11.09,12.51 10.69,13 C10.38,13.38 7.79,16.39 6.81,17.53 C6.61,17.76 6.4,17.96 6.08,17.99 C5.68,18.04 5.29,17.87 5.17,17.45 C5.12,17.28 5.1,17.09 5.1,16.91 C5.1,12.4 4.86,7.81 5.11,3.31 C5.17,2.5 5.81,2.12 6.53,2 L15.23,2 L15.23,2 Z M9.76,11.42 C9.94,11.19 10.17,11.1 10.45,11.1 L12.86,11.1 C13.12,11.1 13.31,10.94 13.36,10.69 C13.37,10.64 13.62,9.41 13.74,8.83 C13.81,8.52 13.53,8.28 13.27,8.28 C12.35,8.29 11.42,8.28 10.5,8.28 C9.84,8.28 9.83,7.69 9.82,7.21 C9.8,6.85 10.13,6.55 10.5,6.55 C11.59,6.56 12.67,6.55 13.76,6.55 C14.03,6.55 14.23,6.4 14.28,6.14 C14.34,5.87 14.67,4.29 14.67,4.29 C14.67,4.29 14.82,3.74 14.19,3.74 L7.34,3.74 C7,3.75 6.84,4.02 6.84,4.33 C6.84,7.58 6.85,14.95 6.85,14.99 C6.87,15 8.89,12.51 9.76,11.42 L9.76,11.42 Z\"/></svg>",
|
||||
"future": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"19 2 18 2 18 6 14 6 14 7 19 7 19 2\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M18,6.548 C16.709,3.29 13.354,1 9.6,1 C4.6,1 0.6,5 0.6,10 C0.6,15 4.6,19 9.6,19 C14.6,19 18.6,15 18.6,10\"/><rect x=\"9\" y=\"4\" width=\"1\" height=\"7\"/><path d=\"M13.018,14.197 L9.445,10.625\" fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\"/></svg>",
|
||||
"git-branch": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" cx=\"7\" cy=\"3\" r=\"2\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" cx=\"14\" cy=\"6\" r=\"2\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" cx=\"7\" cy=\"17\" r=\"2\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"2\" d=\"M14,8 C14,10.41 12.43,10.87 10.56,11.25 C9.09,11.54 7,12.06 7,15 L7,5\"/></svg>",
|
||||
"git-fork": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" cx=\"5.79\" cy=\"2.79\" r=\"1.79\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" cx=\"14.19\" cy=\"2.79\" r=\"1.79\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" cx=\"10.03\" cy=\"16.79\" r=\"1.79\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"2\" d=\"M5.79,4.57 L5.79,6.56 C5.79,9.19 10.03,10.22 10.03,13.31 C10.03,14.86 10.04,14.55 10.04,14.55 C10.04,14.37 10.04,14.86 10.04,13.31 C10.04,10.22 14.2,9.19 14.2,6.56 L14.2,4.57\"/></svg>",
|
||||
"github-alt": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10,0.5 C4.75,0.5 0.5,4.76 0.5,10.01 C0.5,15.26 4.75,19.51 10,19.51 C15.24,19.51 19.5,15.26 19.5,10.01 C19.5,4.76 15.25,0.5 10,0.5 L10,0.5 Z M12.81,17.69 C12.81,17.69 12.81,17.7 12.79,17.69 C12.47,17.75 12.35,17.59 12.35,17.36 L12.35,16.17 C12.35,15.45 12.09,14.92 11.58,14.56 C12.2,14.51 12.77,14.39 13.26,14.21 C13.87,13.98 14.36,13.69 14.74,13.29 C15.42,12.59 15.76,11.55 15.76,10.17 C15.76,9.25 15.45,8.46 14.83,7.8 C15.1,7.08 15.07,6.29 14.75,5.44 L14.51,5.42 C14.34,5.4 14.06,5.46 13.67,5.61 C13.25,5.78 12.79,6.03 12.31,6.35 C11.55,6.16 10.81,6.05 10.09,6.05 C9.36,6.05 8.61,6.15 7.88,6.35 C7.28,5.96 6.75,5.68 6.26,5.54 C6.07,5.47 5.9,5.44 5.78,5.44 L5.42,5.44 C5.06,6.29 5.04,7.08 5.32,7.8 C4.7,8.46 4.4,9.25 4.4,10.17 C4.4,11.94 4.96,13.16 6.08,13.84 C6.53,14.13 7.05,14.32 7.69,14.43 C8.03,14.5 8.32,14.54 8.55,14.55 C8.07,14.89 7.82,15.42 7.82,16.16 L7.82,17.51 C7.8,17.69 7.7,17.8 7.51,17.8 C4.21,16.74 1.82,13.65 1.82,10.01 C1.82,5.5 5.49,1.83 10,1.83 C14.5,1.83 18.17,5.5 18.17,10.01 C18.18,13.53 15.94,16.54 12.81,17.69 L12.81,17.69 Z\"/></svg>",
|
||||
"github": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10,1 C5.03,1 1,5.03 1,10 C1,13.98 3.58,17.35 7.16,18.54 C7.61,18.62 7.77,18.34 7.77,18.11 C7.77,17.9 7.76,17.33 7.76,16.58 C5.26,17.12 4.73,15.37 4.73,15.37 C4.32,14.33 3.73,14.05 3.73,14.05 C2.91,13.5 3.79,13.5 3.79,13.5 C4.69,13.56 5.17,14.43 5.17,14.43 C5.97,15.8 7.28,15.41 7.79,15.18 C7.87,14.6 8.1,14.2 8.36,13.98 C6.36,13.75 4.26,12.98 4.26,9.53 C4.26,8.55 4.61,7.74 5.19,7.11 C5.1,6.88 4.79,5.97 5.28,4.73 C5.28,4.73 6.04,4.49 7.75,5.65 C8.47,5.45 9.24,5.35 10,5.35 C10.76,5.35 11.53,5.45 12.25,5.65 C13.97,4.48 14.72,4.73 14.72,4.73 C15.21,5.97 14.9,6.88 14.81,7.11 C15.39,7.74 15.73,8.54 15.73,9.53 C15.73,12.99 13.63,13.75 11.62,13.97 C11.94,14.25 12.23,14.8 12.23,15.64 C12.23,16.84 12.22,17.81 12.22,18.11 C12.22,18.35 12.38,18.63 12.84,18.54 C16.42,17.35 19,13.98 19,10 C19,5.03 14.97,1 10,1 L10,1 Z\"/></svg>",
|
||||
"gitter": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"3.5\" y=\"1\" width=\"1.531\" height=\"11.471\"/><rect x=\"7.324\" y=\"4.059\" width=\"1.529\" height=\"15.294\"/><rect x=\"11.148\" y=\"4.059\" width=\"1.527\" height=\"15.294\"/><rect x=\"14.971\" y=\"4.059\" width=\"1.529\" height=\"8.412\"/></svg>",
|
||||
"google-plus": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9,9c0,2.7-0.6,5-3.2,6.3c-3.7,1.8-8.1,0.2-9.4-3.6C-1.1,7.6,1.9,3.3,6.1,3c1.7-0.1,3.2,0.3,4.6,1.3 c0.1,0.1,0.3,0.2,0.4,0.4c-0.5,0.5-1.2,1-1.7,1.6c-1-0.8-2.1-1.1-3.5-0.9C5,5.6,4.2,6,3.6,6.7c-1.3,1.3-1.5,3.4-0.5,5 c1,1.7,2.6,2.3,4.6,1.9c1.4-0.3,2.4-1.2,2.6-2.6H6.9V9H12.9z\"/><polygon points=\"20,9 20,11 18,11 18,13 16,13 16,11 14,11 14,9 16,9 16,7 18,7 18,9\"/></svg>",
|
||||
"google": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.86,9.09 C18.46,12.12 17.14,16.05 13.81,17.56 C9.45,19.53 4.13,17.68 2.47,12.87 C0.68,7.68 4.22,2.42 9.5,2.03 C11.57,1.88 13.42,2.37 15.05,3.65 C15.22,3.78 15.37,3.93 15.61,4.14 C14.9,4.81 14.23,5.45 13.5,6.14 C12.27,5.08 10.84,4.72 9.28,4.98 C8.12,5.17 7.16,5.76 6.37,6.63 C4.88,8.27 4.62,10.86 5.76,12.82 C6.95,14.87 9.17,15.8 11.57,15.25 C13.27,14.87 14.76,13.33 14.89,11.75 L10.51,11.75 L10.51,9.09 L17.86,9.09 L17.86,9.09 Z\"/></svg>",
|
||||
"grid": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"2\" y=\"2\" width=\"3\" height=\"3\"/><rect x=\"8\" y=\"2\" width=\"3\" height=\"3\"/><rect x=\"14\" y=\"2\" width=\"3\" height=\"3\"/><rect x=\"2\" y=\"8\" width=\"3\" height=\"3\"/><rect x=\"8\" y=\"8\" width=\"3\" height=\"3\"/><rect x=\"14\" y=\"8\" width=\"3\" height=\"3\"/><rect x=\"2\" y=\"14\" width=\"3\" height=\"3\"/><rect x=\"8\" y=\"14\" width=\"3\" height=\"3\"/><rect x=\"14\" y=\"14\" width=\"3\" height=\"3\"/></svg>",
|
||||
"happy": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"13\" cy=\"7\" r=\"1\"/><circle cx=\"7\" cy=\"7\" r=\"1\"/><circle fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"10\" r=\"8.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4\"/></svg>",
|
||||
"hashtag": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z\"/></svg>",
|
||||
"heart": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.03\" d=\"M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z\"/></svg>",
|
||||
"history": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"#000\" points=\"1 2 2 2 2 6 6 6 6 7 1 7 1 2\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10\"/><rect x=\"9\" y=\"4\" width=\"1\" height=\"7\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M13.018,14.197 L9.445,10.625\"/></svg>",
|
||||
"home": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65\"/><polygon points=\"15 4 18 4 18 7 17 7 17 5 15 5\"/><polygon points=\"3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19\"/></svg>",
|
||||
"image": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16.1\" cy=\"6.1\" r=\"1.1\"/><rect fill=\"none\" stroke=\"#000\" x=\".5\" y=\"2.5\" width=\"19\" height=\"15\"/><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" points=\"4,13 8,9 13,14\"/><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" points=\"11,12 12.5,10.5 16,14\"/></svg>",
|
||||
"info": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10\" r=\"9\"/></svg>",
|
||||
"instagram": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z\"/><circle cx=\"14.87\" cy=\"5.26\" r=\"1.09\"/><path d=\"M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z\"/></svg>",
|
||||
"italic": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z\"/></svg>",
|
||||
"joomla": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z\"/><path d=\"M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8\"/><path d=\"M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8\"/><path d=\"M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7\"/></svg>",
|
||||
"laptop": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\"16\" width=\"20\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\"2.5\" y=\"4.5\" width=\"15\" height=\"10\"/></svg>",
|
||||
"lifesaver": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10,0.5 C4.76,0.5 0.5,4.76 0.5,10 C0.5,15.24 4.76,19.5 10,19.5 C15.24,19.5 19.5,15.24 19.5,10 C19.5,4.76 15.24,0.5 10,0.5 L10,0.5 Z M10,1.5 C11.49,1.5 12.89,1.88 14.11,2.56 L11.85,4.82 C11.27,4.61 10.65,4.5 10,4.5 C9.21,4.5 8.47,4.67 7.79,4.96 L5.58,2.75 C6.87,1.95 8.38,1.5 10,1.5 L10,1.5 Z M4.96,7.8 C4.67,8.48 4.5,9.21 4.5,10 C4.5,10.65 4.61,11.27 4.83,11.85 L2.56,14.11 C1.88,12.89 1.5,11.49 1.5,10 C1.5,8.38 1.95,6.87 2.75,5.58 L4.96,7.79 L4.96,7.8 L4.96,7.8 Z M10,18.5 C8.25,18.5 6.62,17.97 5.27,17.06 L7.46,14.87 C8.22,15.27 9.08,15.5 10,15.5 C10.79,15.5 11.53,15.33 12.21,15.04 L14.42,17.25 C13.13,18.05 11.62,18.5 10,18.5 L10,18.5 Z M10,14.5 C7.52,14.5 5.5,12.48 5.5,10 C5.5,7.52 7.52,5.5 10,5.5 C12.48,5.5 14.5,7.52 14.5,10 C14.5,12.48 12.48,14.5 10,14.5 L10,14.5 Z M15.04,12.21 C15.33,11.53 15.5,10.79 15.5,10 C15.5,9.08 15.27,8.22 14.87,7.46 L17.06,5.27 C17.97,6.62 18.5,8.25 18.5,10 C18.5,11.62 18.05,13.13 17.25,14.42 L15.04,12.21 L15.04,12.21 Z\"/></svg>",
|
||||
"link": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M7.925,11.875 L11.925,7.975\"/></svg>",
|
||||
"linkedin": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z\"/><path d=\"M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z\"/></svg>",
|
||||
"list": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"6\" y=\"4\" width=\"12\" height=\"1\"/><rect x=\"6\" y=\"9\" width=\"12\" height=\"1\"/><rect x=\"6\" y=\"14\" width=\"12\" height=\"1\"/><rect x=\"2\" y=\"4\" width=\"2\" height=\"1\"/><rect x=\"2\" y=\"9\" width=\"2\" height=\"1\"/><rect x=\"2\" y=\"14\" width=\"2\" height=\"1\"/></svg>",
|
||||
"location": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" d=\"M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z\"/><circle fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"6.8\" r=\"2.3\"/></svg>",
|
||||
"lock": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" height=\"10\" width=\"13\" y=\"8.5\" x=\"3.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8\"/></svg>",
|
||||
"mail": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"1.4,6.5 10,11 18.6,6.5\"/><path d=\"M 1,4 1,16 19,16 19,4 1,4 Z M 18,15 2,15 2,5 18,5 18,15 Z\"/></svg>",
|
||||
"menu": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"2\" y=\"4\" width=\"16\" height=\"1\"/><rect x=\"2\" y=\"9\" width=\"16\" height=\"1\"/><rect x=\"2\" y=\"14\" width=\"16\" height=\"1\"/></svg>",
|
||||
"microphone": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><line fill=\"none\" stroke=\"#000\" x1=\"10\" x2=\"10\" y1=\"16.44\" y2=\"18.5\"/><line fill=\"none\" stroke=\"#000\" x1=\"7\" x2=\"13\" y1=\"18.5\" y2=\"18.5\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6\"/></svg>",
|
||||
"minus-circle": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"9.5\" cy=\"9.5\" r=\"9\"/><line fill=\"none\" stroke=\"#000\" x1=\"5\" y1=\"9.5\" x2=\"14\" y2=\"9.5\"/></svg>",
|
||||
"minus": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect height=\"1\" width=\"18\" y=\"9\" x=\"1\"/></svg>",
|
||||
"more-vertical": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"10\" cy=\"3\" r=\"2\"/><circle cx=\"10\" cy=\"10\" r=\"2\"/><circle cx=\"10\" cy=\"17\" r=\"2\"/></svg>",
|
||||
"more": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"10\" r=\"2\"/><circle cx=\"10\" cy=\"10\" r=\"2\"/><circle cx=\"17\" cy=\"10\" r=\"2\"/></svg>",
|
||||
"move": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"4,5 1,5 1,9 2,9 2,6 4,6\"/><polygon points=\"1,16 2,16 2,18 4,18 4,19 1,19\"/><polygon points=\"14,16 14,19 11,19 11,18 13,18 13,16\"/><rect fill=\"none\" stroke=\"#000\" x=\"5.5\" y=\"1.5\" width=\"13\" height=\"13\"/><rect x=\"1\" y=\"11\" width=\"1\" height=\"3\"/><rect x=\"6\" y=\"18\" width=\"3\" height=\"1\"/></svg>",
|
||||
"nut": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" points=\"2.5,5.7 10,1.3 17.5,5.7 17.5,14.3 10,18.7 2.5,14.3\"/><circle fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"10\" r=\"3.5\"/></svg>",
|
||||
"pagekit": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"3,1 17,1 17,16 10,16 10,13 14,13 14,4 6,4 6,16 10,16 10,19 3,19\"/></svg>",
|
||||
"paint-bucket": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.21,1 L0,11.21 L8.1,19.31 L18.31,9.1 L10.21,1 L10.21,1 Z M16.89,9.1 L15,11 L1.7,11 L10.21,2.42 L16.89,9.1 Z\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M6.42,2.33 L11.7,7.61\"/><path d=\"M18.49,12 C18.49,12 20,14.06 20,15.36 C20,16.28 19.24,17 18.49,17 L18.49,17 C17.74,17 17,16.28 17,15.36 C17,14.06 18.49,12 18.49,12 L18.49,12 Z\"/></svg>",
|
||||
"pencil": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z\"/><path fill=\"none\" stroke=\"#000\" d=\"M15.98,7.268 L13.851,5.148\"/></svg>",
|
||||
"phone-landscape": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z\"/><circle cx=\"3.8\" cy=\"10.5\" r=\".8\"/></svg>",
|
||||
"phone": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z\"/><circle cx=\"10.5\" cy=\"16.5\" r=\".8\"/></svg>",
|
||||
"pinterest": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1\"/></svg>",
|
||||
"play-circle": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"8.5 7 13.5 10 8.5 13\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10\" r=\"9\"/></svg>",
|
||||
"play": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" points=\"6.5,5 14.5,10 6.5,15\"/></svg>",
|
||||
"plus-circle": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"9.5\" cy=\"9.5\" r=\"9\"/><line fill=\"none\" stroke=\"#000\" x1=\"9.5\" y1=\"5\" x2=\"9.5\" y2=\"14\"/><line fill=\"none\" stroke=\"#000\" x1=\"5\" y1=\"9.5\" x2=\"14\" y2=\"9.5\"/></svg>",
|
||||
"plus": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"9\" y=\"1\" width=\"1\" height=\"17\"/><rect x=\"1\" y=\"9\" width=\"17\" height=\"1\"/></svg>",
|
||||
"print": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5\"/><polyline fill=\"none\" stroke=\"#000\" points=\"15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5\"/><rect fill=\"none\" stroke=\"#000\" width=\"11\" height=\"6\" x=\"4.5\" y=\"11.5\"/><rect width=\"8\" height=\"1\" x=\"6\" y=\"13\"/><rect width=\"8\" height=\"1\" x=\"6\" y=\"15\"/></svg>",
|
||||
"pull": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"6.85,8 9.5,10.6 12.15,8 12.85,8.7 9.5,12 6.15,8.7\"/><line fill=\"none\" stroke=\"#000\" x1=\"9.5\" y1=\"11\" x2=\"9.5\" y2=\"2\"/><polyline fill=\"none\" stroke=\"#000\" points=\"6,5.5 3.5,5.5 3.5,18.5 15.5,18.5 15.5,5.5 13,5.5\"/></svg>",
|
||||
"push": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"12.15,4 9.5,1.4 6.85,4 6.15,3.3 9.5,0 12.85,3.3\"/><line fill=\"none\" stroke=\"#000\" x1=\"9.5\" y1=\"10\" x2=\"9.5\" y2=\"1\"/><polyline fill=\"none\" stroke=\"#000\" points=\"6 5.5 3.5 5.5 3.5 18.5 15.5 18.5 15.5 5.5 13 5.5\"/></svg>",
|
||||
"question": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10\" r=\"9\"/><circle cx=\"10.44\" cy=\"14.42\" r=\"1.05\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.2\" d=\"M8.17,7.79 C8.17,4.75 12.72,4.73 12.72,7.72 C12.72,8.67 11.81,9.15 11.23,9.75 C10.75,10.24 10.51,10.73 10.45,11.4 C10.44,11.53 10.43,11.64 10.43,11.75\"/></svg>",
|
||||
"quote-right": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z\"/><path d=\"M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z\"/></svg>",
|
||||
"receiver": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" d=\"M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611\"/></svg>",
|
||||
"reddit": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z\"/><path d=\"M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z\"/><path d=\"M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z\"/><path d=\"M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z\"/></svg>",
|
||||
"refresh": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5\"/><polyline fill=\"none\" stroke=\"#000\" points=\"9.9 2 12.79 4.89 9.79 7.9\"/></svg>",
|
||||
"reply": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z\"/></svg>",
|
||||
"rss": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3.12\" cy=\"16.8\" r=\"1.85\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5\"/></svg>",
|
||||
"search": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"9\" cy=\"9\" r=\"7\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M14,14 L18,18 L14,14 Z\"/></svg>",
|
||||
"server": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"3\" y=\"3\" width=\"1\" height=\"2\"/><rect x=\"5\" y=\"3\" width=\"1\" height=\"2\"/><rect x=\"7\" y=\"3\" width=\"1\" height=\"2\"/><rect x=\"16\" y=\"3\" width=\"1\" height=\"1\"/><rect x=\"16\" y=\"10\" width=\"1\" height=\"1\"/><circle fill=\"none\" stroke=\"#000\" cx=\"9.9\" cy=\"17.4\" r=\"1.4\"/><rect x=\"3\" y=\"10\" width=\"1\" height=\"2\"/><rect x=\"5\" y=\"10\" width=\"1\" height=\"2\"/><rect x=\"9.5\" y=\"14\" width=\"1\" height=\"2\"/><rect x=\"3\" y=\"17\" width=\"6\" height=\"1\"/><rect x=\"11\" y=\"17\" width=\"6\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"1.5\" width=\"17\" height=\"5\"/><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"8.5\" width=\"17\" height=\"5\"/></svg>",
|
||||
"settings": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><ellipse fill=\"none\" stroke=\"#000\" cx=\"6.11\" cy=\"3.55\" rx=\"2.11\" ry=\"2.15\"/><ellipse fill=\"none\" stroke=\"#000\" cx=\"6.11\" cy=\"15.55\" rx=\"2.11\" ry=\"2.15\"/><circle fill=\"none\" stroke=\"#000\" cx=\"13.15\" cy=\"9.55\" r=\"2.15\"/><rect x=\"1\" y=\"3\" width=\"3\" height=\"1\"/><rect x=\"10\" y=\"3\" width=\"8\" height=\"1\"/><rect x=\"1\" y=\"9\" width=\"8\" height=\"1\"/><rect x=\"15\" y=\"9\" width=\"3\" height=\"1\"/><rect x=\"1\" y=\"15\" width=\"3\" height=\"1\"/><rect x=\"10\" y=\"15\" width=\"8\" height=\"1\"/></svg>",
|
||||
"shrink": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"11 4 12 4 12 8 16 8 16 9 11 9\"/><polygon points=\"4 11 9 11 9 16 8 16 8 12 4 12\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M12,8 L18,2\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M2,18 L8,12\"/></svg>",
|
||||
"sign-in": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3\"/><polygon points=\"9.1 13.4 8.5 12.8 11.28 10 4 10 4 9 11.28 9 8.5 6.2 9.1 5.62 13 9.5\"/></svg>",
|
||||
"sign-out": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"13.1 13.4 12.5 12.8 15.28 10 8 10 8 9 15.28 9 12.5 6.2 13.1 5.62 17 9.5\"/><polygon points=\"13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3\"/></svg>",
|
||||
"social": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"13.4\" y1=\"14\" x2=\"6.3\" y2=\"10.7\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"13.5\" y1=\"5.5\" x2=\"6.5\" y2=\"8.8\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"15.5\" cy=\"4.6\" r=\"2.3\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"15.5\" cy=\"14.8\" r=\"2.3\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"4.5\" cy=\"9.8\" r=\"2.3\"/></svg>",
|
||||
"soundcloud": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z\"/><rect x=\"6\" y=\"6.5\" width=\"1.5\" height=\"8.5\"/><rect x=\"3\" y=\"8\" width=\"1.5\" height=\"7\"/><rect y=\"10\" width=\"1.5\" height=\"5\"/></svg>",
|
||||
"star": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" stroke-width=\"1.01\" points=\"10 2 12.63 7.27 18.5 8.12 14.25 12.22 15.25 18 10 15.27 4.75 18 5.75 12.22 1.5 8.12 7.37 7.27\"/></svg>",
|
||||
"strikethrough": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z\"/><rect x=\"3\" y=\"10\" width=\"15\" height=\"1\"/></svg>",
|
||||
"table": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1\" y=\"3\" width=\"18\" height=\"1\"/><rect x=\"1\" y=\"7\" width=\"18\" height=\"1\"/><rect x=\"1\" y=\"11\" width=\"18\" height=\"1\"/><rect x=\"1\" y=\"15\" width=\"18\" height=\"1\"/></svg>",
|
||||
"tablet-landscape": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z\"/><circle cx=\"3.7\" cy=\"10.5\" r=\".8\"/></svg>",
|
||||
"tablet": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z\"/><circle cx=\"10.5\" cy=\"16.3\" r=\".8\"/></svg>",
|
||||
"tag": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z\"/><circle cx=\"14\" cy=\"6\" r=\"1\"/></svg>",
|
||||
"thumbnails": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" x=\"3.5\" y=\"3.5\" width=\"5\" height=\"5\"/><rect fill=\"none\" stroke=\"#000\" x=\"11.5\" y=\"3.5\" width=\"5\" height=\"5\"/><rect fill=\"none\" stroke=\"#000\" x=\"11.5\" y=\"11.5\" width=\"5\" height=\"5\"/><rect fill=\"none\" stroke=\"#000\" x=\"3.5\" y=\"11.5\" width=\"5\" height=\"5\"/></svg>",
|
||||
"trash": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"6.5 3 6.5 1.5 13.5 1.5 13.5 3\"/><polyline fill=\"none\" stroke=\"#000\" points=\"4.5 4 4.5 18.5 15.5 18.5 15.5 4\"/><rect x=\"8\" y=\"7\" width=\"1\" height=\"9\"/><rect x=\"11\" y=\"7\" width=\"1\" height=\"9\"/><rect x=\"2\" y=\"3\" width=\"16\" height=\"1\"/></svg>",
|
||||
"triangle-down": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"5 7 15 7 10 12\"/></svg>",
|
||||
"triangle-left": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"12 5 7 10 12 15\"/></svg>",
|
||||
"triangle-right": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"8 5 13 10 8 15\"/></svg>",
|
||||
"triangle-up": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"5 13 10 8 15 13\"/></svg>",
|
||||
"tripadvisor": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0\tc0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009\tc1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15\tc2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594\tc-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811\tc-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079\tc2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066\tc-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002\tc2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775\tc0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468\tC3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479\tc1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775\tc0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627\tc-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618\tc0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968\tc-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72\tC9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z\"/></svg>",
|
||||
"tumblr": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.885,8.598c0,0,0,3.393,0,4.996c0,0.282,0,0.66,0.094,0.942c0.377,1.509,1.131,2.545,2.545,3.11 c1.319,0.472,2.356,0.472,3.676,0c0.565-0.188,1.132-0.659,1.132-0.659l-0.849-2.263c0,0-1.036,0.378-1.603,0.283 c-0.565-0.094-1.226-0.66-1.226-1.508c0-1.603,0-4.902,0-4.902h2.828V5.771h-2.828V2H8.205c0,0-0.094,0.66-0.188,0.942 C7.828,3.791,7.262,4.733,6.603,5.394C5.848,6.147,5,6.43,5,6.43v2.168H6.885z\"/></svg>",
|
||||
"tv": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"7\" y=\"16\" width=\"6\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\".5\" y=\"3.5\" width=\"19\" height=\"11\"/></svg>",
|
||||
"twitter": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19,4.74 C18.339,5.029 17.626,5.229 16.881,5.32 C17.644,4.86 18.227,4.139 18.503,3.28 C17.79,3.7 17.001,4.009 16.159,4.17 C15.485,3.45 14.526,3 13.464,3 C11.423,3 9.771,4.66 9.771,6.7 C9.771,6.99 9.804,7.269 9.868,7.539 C6.795,7.38 4.076,5.919 2.254,3.679 C1.936,4.219 1.754,4.86 1.754,5.539 C1.754,6.82 2.405,7.95 3.397,8.61 C2.79,8.589 2.22,8.429 1.723,8.149 L1.723,8.189 C1.723,9.978 2.997,11.478 4.686,11.82 C4.376,11.899 4.049,11.939 3.713,11.939 C3.475,11.939 3.245,11.919 3.018,11.88 C3.49,13.349 4.852,14.419 6.469,14.449 C5.205,15.429 3.612,16.019 1.882,16.019 C1.583,16.019 1.29,16.009 1,15.969 C2.635,17.019 4.576,17.629 6.662,17.629 C13.454,17.629 17.17,12 17.17,7.129 C17.17,6.969 17.166,6.809 17.157,6.649 C17.879,6.129 18.504,5.478 19,4.74\"/></svg>",
|
||||
"uikit": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3\"/><polygon points=\"9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3\"/></svg>",
|
||||
"unlock": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect fill=\"none\" stroke=\"#000\" x=\"3.5\" y=\"8.5\" width=\"13\" height=\"10\"/><path fill=\"none\" stroke=\"#000\" d=\"M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3 13.5,4.9\"/></svg>",
|
||||
"upload": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" points=\"5 8 9.5 3.5 14 8\"/><rect x=\"3\" y=\"17\" width=\"13\" height=\"1\"/><line fill=\"none\" stroke=\"#000\" x1=\"9.5\" y1=\"15\" x2=\"9.5\" y2=\"4\"/></svg>",
|
||||
"user": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"9.9\" cy=\"6.4\" r=\"4.4\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M1.5,19 C2.3,14.5 5.8,11.2 10,11.2 C14.2,11.2 17.7,14.6 18.5,19.2\"/></svg>",
|
||||
"users": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"7.7\" cy=\"8.6\" r=\"3.5\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3\"/><path fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" d=\"M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1\"/></svg>",
|
||||
"video-camera": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon fill=\"none\" stroke=\"#000\" points=\"17.5 6.9 17.5 13.1 13.5 10.4 13.5 14.5 2.5 14.5 2.5 5.5 13.5 5.5 13.5 9.6 17.5 6.9\"/></svg>",
|
||||
"vimeo": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.065,7.59C1.84,7.367,1.654,7.082,1.468,6.838c-0.332-0.42-0.137-0.411,0.274-0.772c1.026-0.91,2.004-1.896,3.127-2.688 c1.017-0.713,2.365-1.173,3.286-0.039c0.849,1.045,0.869,2.629,1.084,3.891c0.215,1.309,0.421,2.648,0.88,3.901 c0.127,0.352,0.37,1.018,0.81,1.074c0.567,0.078,1.145-0.917,1.408-1.289c0.684-0.987,1.611-2.317,1.494-3.587 c-0.115-1.349-1.572-1.095-2.482-0.773c0.146-1.514,1.555-3.216,2.912-3.792c1.439-0.597,3.579-0.587,4.302,1.036 c0.772,1.759,0.078,3.802-0.763,5.396c-0.918,1.731-2.1,3.333-3.363,4.829c-1.114,1.329-2.432,2.787-4.093,3.422 c-1.897,0.723-3.021-0.686-3.667-2.318c-0.705-1.777-1.056-3.771-1.565-5.621C4.898,8.726,4.644,7.836,4.136,7.191 C3.473,6.358,2.72,7.141,2.065,7.59C1.977,7.502,2.115,7.551,2.065,7.59L2.065,7.59z\"/></svg>",
|
||||
"warning": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"10\" cy=\"14\" r=\"1\"/><circle fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" cx=\"10\" cy=\"10\" r=\"9\"/><path d=\"M10.97,7.72 C10.85,9.54 10.56,11.29 10.56,11.29 C10.51,11.87 10.27,12 9.99,12 C9.69,12 9.49,11.87 9.43,11.29 C9.43,11.29 9.16,9.54 9.03,7.72 C8.96,6.54 9.03,6 9.03,6 C9.03,5.45 9.46,5.02 9.99,5 C10.53,5.01 10.97,5.44 10.97,6 C10.97,6 11.04,6.54 10.97,7.72 L10.97,7.72 Z\"/></svg>",
|
||||
"whatsapp": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.7,3.3c-1.8-1.8-4.1-2.8-6.7-2.8c-5.2,0-9.4,4.2-9.4,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3c1.4,0.8,2.9,1.2,4.5,1.2 l0,0l0,0c5.2,0,9.4-4.2,9.4-9.4C19.5,7.4,18.5,5,16.7,3.3 M10.1,17.7L10.1,17.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2l-3,0.8l0.8-2.9 l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.8-7.8c2.1,0,4.1,0.8,5.5,2.3c1.5,1.5,2.3,3.4,2.3,5.5 C17.9,14.2,14.4,17.7,10.1,17.7 M14.4,11.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.8,0.9 c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5C8,8.8,8.1,8.7,8.2,8.5 c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4C8.4,7.6,7.9,6.5,7.7,6C7.5,5.5,7.3,5.6,7.2,5.6c-0.1,0-0.3,0-0.4,0 c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.5c0.6,0.2,1,0.4,1.3,0.5 c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C14.8,12.1,14.6,12,14.4,11.9\"/></svg>",
|
||||
"wordpress": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10,0.5c-5.2,0-9.5,4.3-9.5,9.5s4.3,9.5,9.5,9.5c5.2,0,9.5-4.3,9.5-9.5S15.2,0.5,10,0.5L10,0.5L10,0.5z M15.6,3.9h-0.1 c-0.8,0-1.4,0.7-1.4,1.5c0,0.7,0.4,1.3,0.8,1.9c0.3,0.6,0.7,1.3,0.7,2.3c0,0.7-0.3,1.5-0.6,2.7L14.1,15l-3-8.9 c0.5,0,0.9-0.1,0.9-0.1C12.5,6,12.5,5.3,12,5.4c0,0-1.3,0.1-2.2,0.1C9,5.5,7.7,5.4,7.7,5.4C7.2,5.3,7.2,6,7.6,6c0,0,0.4,0.1,0.9,0.1 l1.3,3.5L8,15L5,6.1C5.5,6.1,5.9,6,5.9,6C6.4,6,6.3,5.3,5.9,5.4c0,0-1.3,0.1-2.2,0.1c-0.2,0-0.3,0-0.5,0c1.5-2.2,4-3.7,6.9-3.7 C12.2,1.7,14.1,2.6,15.6,3.9L15.6,3.9L15.6,3.9z M2.5,6.6l3.9,10.8c-2.7-1.3-4.6-4.2-4.6-7.4C1.8,8.8,2,7.6,2.5,6.6L2.5,6.6L2.5,6.6 z M10.2,10.7l2.5,6.9c0,0,0,0.1,0.1,0.1C11.9,18,11,18.2,10,18.2c-0.8,0-1.6-0.1-2.3-0.3L10.2,10.7L10.2,10.7L10.2,10.7z M14.2,17.1 l2.5-7.3c0.5-1.2,0.6-2.1,0.6-2.9c0-0.3,0-0.6-0.1-0.8c0.6,1.2,1,2.5,1,4C18.3,13,16.6,15.7,14.2,17.1L14.2,17.1L14.2,17.1z\"/></svg>",
|
||||
"world": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M1,10.5 L19,10.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M2.35,15.5 L17.65,15.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M2.35,5.5 L17.523,5.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z\"/><circle fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"10.5\" r=\"9\"/></svg>",
|
||||
"xing": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z\"/><path d=\"M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z\"/></svg>",
|
||||
"yelp": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069\tc-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276\tc0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789\tc-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025\tc0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155\tc-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351\tc-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479\tc0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421\tc-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272\tc0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749\tC10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794\tC2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667\tc0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z\"/></svg>",
|
||||
"youtube": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z\"/></svg>"
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
if (typeof window !== 'undefined' && window.UIkit) {
|
||||
window.UIkit.use(plugin);
|
||||
}
|
||||
|
||||
return plugin;
|
||||
|
||||
})));
|
3
apps/gnous_eu/static/javascripts/uikit/uikit-icons.min.js
vendored
Normal file
12178
apps/gnous_eu/static/javascripts/uikit/uikit.js
Normal file
3
apps/gnous_eu/static/javascripts/uikit/uikit.min.js
vendored
Normal file
568
apps/gnous_eu/static/stylesheets/css/index.css
Normal file
|
@ -0,0 +1,568 @@
|
|||
@import "uikit/uikit.css";
|
||||
html[data-theme=dark] .uk-offcanvas .uk-nav > li > a.active {
|
||||
color: #16171a;
|
||||
}
|
||||
html[data-theme=dark] .uk-logo img {
|
||||
height: 38px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
html[data-theme=dark] .uk-button, html[data-theme=dark] .uk-input {
|
||||
border: none;
|
||||
color: #e6e6e8;
|
||||
text-transform: none;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
background-color: #16171a;
|
||||
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3);
|
||||
font-weight: bolder;
|
||||
}
|
||||
html[data-theme=dark] .uk-button-link {
|
||||
color: white;
|
||||
font-weight: bolder;
|
||||
text-decoration: underline;
|
||||
}
|
||||
html[data-theme=dark] .uk-card {
|
||||
border-radius: 5px;
|
||||
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
html[data-theme=dark] .uk-card .uk-card-header {
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
html[data-theme=dark] .uk-card .uk-card-footer {
|
||||
border-top: 1px solid black;
|
||||
}
|
||||
html[data-theme=dark] .uk-card .uk-card-title {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
html[data-theme=dark] .uk-card-secondary {
|
||||
background: #23272A;
|
||||
}
|
||||
html[data-theme=dark] .uk-border-circle {
|
||||
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
html[data-theme=dark] .uk-h1, html[data-theme=dark] h1 {
|
||||
color: #cccccc;
|
||||
}
|
||||
html[data-theme=dark] .uk-h2, html[data-theme=dark] h2 {
|
||||
color: #cccccc;
|
||||
}
|
||||
html[data-theme=dark] .uk-h3, html[data-theme=dark] h3 {
|
||||
color: #cccccc;
|
||||
}
|
||||
html[data-theme=dark] .uk-h4, html[data-theme=dark] h4 {
|
||||
color: #cccccc;
|
||||
}
|
||||
html[data-theme=dark] .uk-h5, html[data-theme=dark] h5 {
|
||||
color: #cccccc;
|
||||
}
|
||||
html[data-theme=dark] .uk-h6, html[data-theme=dark] h6 {
|
||||
color: #cccccc;
|
||||
}
|
||||
html[data-theme=dark] .min-height-10vh {
|
||||
min-height: 10vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-10vh {
|
||||
max-height: 10vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-10vw {
|
||||
max-width: 10vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-10vw {
|
||||
max-width: 10vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-20vh {
|
||||
min-height: 20vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-20vh {
|
||||
max-height: 20vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-20vw {
|
||||
max-width: 20vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-20vw {
|
||||
max-width: 20vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-30vh {
|
||||
min-height: 30vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-30vh {
|
||||
max-height: 30vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-30vw {
|
||||
max-width: 30vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-30vw {
|
||||
max-width: 30vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-40vh {
|
||||
min-height: 40vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-40vh {
|
||||
max-height: 40vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-40vw {
|
||||
max-width: 40vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-40vw {
|
||||
max-width: 40vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-50vh {
|
||||
min-height: 50vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-50vh {
|
||||
max-height: 50vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-50vw {
|
||||
max-width: 50vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-50vw {
|
||||
max-width: 50vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-60vh {
|
||||
min-height: 60vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-60vh {
|
||||
max-height: 60vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-60vw {
|
||||
max-width: 60vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-60vw {
|
||||
max-width: 60vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-70vh {
|
||||
min-height: 70vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-70vh {
|
||||
max-height: 70vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-70vw {
|
||||
max-width: 70vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-70vw {
|
||||
max-width: 70vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-80vh {
|
||||
min-height: 80vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-80vh {
|
||||
max-height: 80vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-80vw {
|
||||
max-width: 80vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-80vw {
|
||||
max-width: 80vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-90vh {
|
||||
min-height: 90vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-90vh {
|
||||
max-height: 90vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-90vw {
|
||||
max-width: 90vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-90vw {
|
||||
max-width: 90vw;
|
||||
}
|
||||
html[data-theme=dark] .min-height-100vh {
|
||||
min-height: 100vh;
|
||||
}
|
||||
html[data-theme=dark] .max-height-100vh {
|
||||
max-height: 100vh;
|
||||
}
|
||||
html[data-theme=dark] .min-width-100vw {
|
||||
max-width: 100vw;
|
||||
}
|
||||
html[data-theme=dark] .max-width-100vw {
|
||||
max-width: 100vw;
|
||||
}
|
||||
html[data-theme=dark] .uk-switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: 24px;
|
||||
width: 42px;
|
||||
}
|
||||
html[data-theme=dark] .uk-switch input {
|
||||
display: none;
|
||||
}
|
||||
html[data-theme=dark] .uk-switch-slider {
|
||||
background-color: rgba(0, 0, 0, 0.22);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
border-radius: 500px;
|
||||
bottom: 0;
|
||||
cursor: pointer;
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.05s;
|
||||
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
html[data-theme=dark] .uk-switch-slider:before {
|
||||
content: "";
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
left: 2px;
|
||||
bottom: 2px;
|
||||
border-radius: 50%;
|
||||
transition-property: transform, box-shadow;
|
||||
transition-duration: 0.05s;
|
||||
}
|
||||
html[data-theme=dark] input:checked + .uk-switch-slider {
|
||||
background-color: #39f !important;
|
||||
}
|
||||
html[data-theme=dark] input:checked + .uk-switch-slider:before {
|
||||
transform: translateX(18px);
|
||||
}
|
||||
html[data-theme=dark] .uk-switch-slider.uk-switch-on-off {
|
||||
background-color: #f0506e;
|
||||
}
|
||||
html[data-theme=dark] input:checked + .uk-switch-slider.uk-switch-on-off {
|
||||
background-color: #32d296 !important;
|
||||
}
|
||||
html[data-theme=dark] .uk-switch-slider.uk-switch-big:before {
|
||||
transform: scale(1.2);
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
html[data-theme=dark] .uk-switch-slider.uk-switch-small:before {
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
html[data-theme=dark] input:checked + .uk-switch-slider.uk-switch-big:before {
|
||||
transform: translateX(18px) scale(1.2);
|
||||
}
|
||||
html[data-theme=dark] .uk-text-muted {
|
||||
color: #999 !important;
|
||||
}
|
||||
|
||||
html[data-theme=light] .uk-offcanvas .uk-nav > li > a.active {
|
||||
color: #E0E5EC;
|
||||
}
|
||||
html[data-theme=light] .uk-logo img {
|
||||
height: 38px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
html[data-theme=light] .uk-button, html[data-theme=light] .uk-input {
|
||||
border: none;
|
||||
color: #2c2c2e;
|
||||
text-transform: none;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
background-color: #E0E5EC;
|
||||
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
font-weight: bolder;
|
||||
}
|
||||
html[data-theme=light] .uk-button-link {
|
||||
color: #5e5e62;
|
||||
font-weight: bolder;
|
||||
text-decoration: underline;
|
||||
}
|
||||
html[data-theme=light] .uk-card {
|
||||
border-radius: 5px;
|
||||
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
html[data-theme=light] .uk-card .uk-card-header {
|
||||
border-bottom: 1px solid #c0cad9;
|
||||
}
|
||||
html[data-theme=light] .uk-card .uk-card-footer {
|
||||
border-top: 1px solid #c0cad9;
|
||||
}
|
||||
html[data-theme=light] .uk-card .uk-card-title {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
html[data-theme=light] .uk-card-secondary {
|
||||
background: #23272A;
|
||||
}
|
||||
html[data-theme=light] .uk-border-circle {
|
||||
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
html[data-theme=light] .uk-h1, html[data-theme=light] h1 {
|
||||
color: #333333;
|
||||
}
|
||||
html[data-theme=light] .uk-h2, html[data-theme=light] h2 {
|
||||
color: #333333;
|
||||
}
|
||||
html[data-theme=light] .uk-h3, html[data-theme=light] h3 {
|
||||
color: #333333;
|
||||
}
|
||||
html[data-theme=light] .uk-h4, html[data-theme=light] h4 {
|
||||
color: #333333;
|
||||
}
|
||||
html[data-theme=light] .uk-h5, html[data-theme=light] h5 {
|
||||
color: #333333;
|
||||
}
|
||||
html[data-theme=light] .uk-h6, html[data-theme=light] h6 {
|
||||
color: #333333;
|
||||
}
|
||||
html[data-theme=light] .min-height-10vh {
|
||||
min-height: 10vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-10vh {
|
||||
max-height: 10vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-10vw {
|
||||
max-width: 10vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-10vw {
|
||||
max-width: 10vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-20vh {
|
||||
min-height: 20vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-20vh {
|
||||
max-height: 20vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-20vw {
|
||||
max-width: 20vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-20vw {
|
||||
max-width: 20vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-30vh {
|
||||
min-height: 30vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-30vh {
|
||||
max-height: 30vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-30vw {
|
||||
max-width: 30vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-30vw {
|
||||
max-width: 30vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-40vh {
|
||||
min-height: 40vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-40vh {
|
||||
max-height: 40vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-40vw {
|
||||
max-width: 40vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-40vw {
|
||||
max-width: 40vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-50vh {
|
||||
min-height: 50vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-50vh {
|
||||
max-height: 50vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-50vw {
|
||||
max-width: 50vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-50vw {
|
||||
max-width: 50vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-60vh {
|
||||
min-height: 60vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-60vh {
|
||||
max-height: 60vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-60vw {
|
||||
max-width: 60vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-60vw {
|
||||
max-width: 60vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-70vh {
|
||||
min-height: 70vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-70vh {
|
||||
max-height: 70vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-70vw {
|
||||
max-width: 70vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-70vw {
|
||||
max-width: 70vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-80vh {
|
||||
min-height: 80vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-80vh {
|
||||
max-height: 80vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-80vw {
|
||||
max-width: 80vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-80vw {
|
||||
max-width: 80vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-90vh {
|
||||
min-height: 90vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-90vh {
|
||||
max-height: 90vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-90vw {
|
||||
max-width: 90vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-90vw {
|
||||
max-width: 90vw;
|
||||
}
|
||||
html[data-theme=light] .min-height-100vh {
|
||||
min-height: 100vh;
|
||||
}
|
||||
html[data-theme=light] .max-height-100vh {
|
||||
max-height: 100vh;
|
||||
}
|
||||
html[data-theme=light] .min-width-100vw {
|
||||
max-width: 100vw;
|
||||
}
|
||||
html[data-theme=light] .max-width-100vw {
|
||||
max-width: 100vw;
|
||||
}
|
||||
html[data-theme=light] .uk-switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: 24px;
|
||||
width: 42px;
|
||||
}
|
||||
html[data-theme=light] .uk-switch input {
|
||||
display: none;
|
||||
}
|
||||
html[data-theme=light] .uk-switch-slider {
|
||||
background-color: rgba(0, 0, 0, 0.22);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
border-radius: 500px;
|
||||
bottom: 0;
|
||||
cursor: pointer;
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.05s;
|
||||
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
html[data-theme=light] .uk-switch-slider:before {
|
||||
content: "";
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
left: 2px;
|
||||
bottom: 2px;
|
||||
border-radius: 50%;
|
||||
transition-property: transform, box-shadow;
|
||||
transition-duration: 0.05s;
|
||||
}
|
||||
html[data-theme=light] input:checked + .uk-switch-slider {
|
||||
background-color: #39f !important;
|
||||
}
|
||||
html[data-theme=light] input:checked + .uk-switch-slider:before {
|
||||
transform: translateX(18px);
|
||||
}
|
||||
html[data-theme=light] .uk-switch-slider.uk-switch-on-off {
|
||||
background-color: #f0506e;
|
||||
}
|
||||
html[data-theme=light] input:checked + .uk-switch-slider.uk-switch-on-off {
|
||||
background-color: #32d296 !important;
|
||||
}
|
||||
html[data-theme=light] .uk-switch-slider.uk-switch-big:before {
|
||||
transform: scale(1.2);
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
html[data-theme=light] .uk-switch-slider.uk-switch-small:before {
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
html[data-theme=light] input:checked + .uk-switch-slider.uk-switch-big:before {
|
||||
transform: translateX(18px) scale(1.2);
|
||||
}
|
||||
html[data-theme=light] .uk-text-muted {
|
||||
color: #666666 !important;
|
||||
}
|
||||
|
||||
.uk-label {
|
||||
background: #0b59a6;
|
||||
}
|
||||
|
||||
.uk-label-success {
|
||||
background-color: #166548;
|
||||
}
|
||||
|
||||
.uk-label-warning {
|
||||
background-color: #914204;
|
||||
}
|
||||
|
||||
:not(pre) > code, :not(pre) > kbd, :not(pre) > samp {
|
||||
color: #aa0f2c;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
*:focus {
|
||||
border: 1px solid #0f7ae5 !important;
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: "Roboto", sans-serif;
|
||||
transition-duration: 0.3s;
|
||||
}
|
||||
|
||||
html[data-theme=dark] body {
|
||||
background-color: #16171a;
|
||||
color: #e6e6e8;
|
||||
}
|
||||
html[data-theme=dark] #app {
|
||||
min-height: 100vh;
|
||||
}
|
||||
html[data-theme=dark] .nav {
|
||||
z-index: 99;
|
||||
background-color: #16171a;
|
||||
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
html[data-theme=dark] .nav .uk-navbar-nav > li > a {
|
||||
color: #e6e6e8;
|
||||
text-transform: none;
|
||||
}
|
||||
html[data-theme=dark] .nav .uk-navbar-nav > li > a:hover, html[data-theme=dark] .nav .uk-navbar-nav > li > a.active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
html[data-theme=dark] .top-wrap-height {
|
||||
height: 80vh;
|
||||
min-height: 460px;
|
||||
transition: height 0.25s;
|
||||
}
|
||||
html[data-theme=dark] .subtitle-text {
|
||||
font-size: 1.2em;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
html[data-theme=light] body {
|
||||
background-color: #E0E5EC;
|
||||
color: #2c2c2e;
|
||||
}
|
||||
html[data-theme=light] #app {
|
||||
min-height: 100vh;
|
||||
}
|
||||
html[data-theme=light] .nav {
|
||||
z-index: 99;
|
||||
background-color: #E0E5EC;
|
||||
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
html[data-theme=light] .nav .uk-navbar-nav > li > a {
|
||||
color: #2c2c2e;
|
||||
text-transform: none;
|
||||
}
|
||||
html[data-theme=light] .nav .uk-navbar-nav > li > a:hover, html[data-theme=light] .nav .uk-navbar-nav > li > a.active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
html[data-theme=light] .top-wrap-height {
|
||||
height: 80vh;
|
||||
min-height: 460px;
|
||||
transition: height 0.25s;
|
||||
}
|
||||
html[data-theme=light] .subtitle-text {
|
||||
font-size: 1.2em;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=index.css.map */
|
1
apps/gnous_eu/static/stylesheets/css/index.css.map
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../sass/index.scss","../sass/uikit_fix.scss"],"names":[],"mappings":"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","file":"index.css"}
|
1
apps/gnous_eu/static/stylesheets/css/index.min.css
vendored
Normal file
1
apps/gnous_eu/static/stylesheets/css/uikit/uikit-rtl.min.css
vendored
Normal file
14071
apps/gnous_eu/static/stylesheets/css/uikit/uikit.css
Normal file
1
apps/gnous_eu/static/stylesheets/css/uikit/uikit.min.css
vendored
Normal file
18
apps/gnous_eu/static/stylesheets/sass/_variables.scss
Normal file
|
@ -0,0 +1,18 @@
|
|||
$themes: (
|
||||
light: (
|
||||
primary: #E0E5EC,
|
||||
primary-text: rgb(44, 44, 46),
|
||||
primary-text-h: rgb(51, 51, 51),
|
||||
primary-text-muted: rgb(102, 102, 102),
|
||||
shadow: (-5px -5px 12px 0 rgba(255, 255, 255, .5),
|
||||
5px 5px 12px 0 rgba(0, 0, 0, .1)),
|
||||
),
|
||||
dark: (
|
||||
primary: #16171a,
|
||||
primary-text: rgb(230, 230, 232),
|
||||
primary-text-h: rgb(204, 204, 204),
|
||||
primary-text-muted: #999,
|
||||
shadow: (-5px -5px 12px 0 rgba(41, 41, 41, 0.6),
|
||||
5px 5px 12px 0 rgba(0, 0, 0, 0.3)),
|
||||
),
|
||||
);
|
58
apps/gnous_eu/static/stylesheets/sass/index.scss
Normal file
|
@ -0,0 +1,58 @@
|
|||
@import "uikit/uikit.css";
|
||||
@import "variables";
|
||||
@import "uikit_fix";
|
||||
|
||||
|
||||
*:focus {
|
||||
border: 1px solid #0f7ae5!important;
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
transition-duration: .3s;
|
||||
}
|
||||
|
||||
@mixin render_theme($theme) {
|
||||
body {
|
||||
background-color: map_get(map_get($themes, $theme), 'primary');
|
||||
color: map_get(map_get($themes, $theme), 'primary-text')
|
||||
}
|
||||
|
||||
#app {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.nav {
|
||||
z-index: 99;
|
||||
|
||||
background-color: map_get(map_get($themes, $theme), 'primary');
|
||||
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
||||
|
||||
.uk-navbar-nav > li > a {
|
||||
color: map_get(map_get($themes, $theme), 'primary-text');
|
||||
text-transform: none;
|
||||
|
||||
&:hover, &.active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.top-wrap-height {
|
||||
height: 80vh;
|
||||
min-height: 460px;
|
||||
transition: height 0.25s;
|
||||
}
|
||||
|
||||
.subtitle-text {
|
||||
font-size: 1.2em;
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
html[data-theme="dark"] {
|
||||
@include render_theme('dark')
|
||||
}
|
||||
html[data-theme="light"] {
|
||||
@include render_theme('light')
|
||||
}
|
1
apps/gnous_eu/static/stylesheets/sass/uikit/uikit-rtl.min.css
vendored
Normal file
12407
apps/gnous_eu/static/stylesheets/sass/uikit/uikit.css
Normal file
1
apps/gnous_eu/static/stylesheets/sass/uikit/uikit.min.css
vendored
Normal file
178
apps/gnous_eu/static/stylesheets/sass/uikit_fix.scss
Normal file
|
@ -0,0 +1,178 @@
|
|||
@import "variables";
|
||||
|
||||
@mixin render_theme($theme) {
|
||||
.uk-offcanvas {
|
||||
.uk-nav > li > a {
|
||||
&.active {
|
||||
color: map_get(map_get($themes, $theme), 'primary');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.uk-logo img {
|
||||
height: 38px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.uk-button, .uk-input {
|
||||
border: none;
|
||||
color: map_get(map_get($themes, $theme), 'primary-text');
|
||||
text-transform: none;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
background-color: map_get(map_get($themes, $theme), 'primary');
|
||||
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
.uk-button-link {
|
||||
color: lighten(map_get(map_get($themes, $theme), 'primary-text'), 20%);
|
||||
font-weight: bolder;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.uk-card {
|
||||
border-radius: 5px;
|
||||
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
||||
|
||||
.uk-card-header {
|
||||
border-bottom: 1px solid darken(map_get(map_get($themes, $theme), 'primary'), 10%)
|
||||
}
|
||||
|
||||
.uk-card-footer {
|
||||
border-top: 1px solid darken(map_get(map_get($themes, $theme), 'primary'), 10%)
|
||||
}
|
||||
|
||||
.uk-card-title {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
.uk-card-secondary {
|
||||
background: #23272A;
|
||||
}
|
||||
|
||||
.uk-border-circle {
|
||||
box-shadow: map_get(map_get($themes, $theme), 'shadow');
|
||||
}
|
||||
|
||||
@for $i from 1 through 6 {
|
||||
.uk-h#{$i}, h#{$i} {
|
||||
color: map_get(map_get($themes, $theme), 'primary-text-h')
|
||||
}
|
||||
}
|
||||
|
||||
@for $i from 10 through 100 {
|
||||
@if $i % 10 == 0 {
|
||||
.min-height-#{$i}vh {
|
||||
min-height: #{$i}vh;
|
||||
}
|
||||
|
||||
.max-height-#{$i}vh {
|
||||
max-height: #{$i}vh;
|
||||
}
|
||||
|
||||
.min-width-#{$i}vw {
|
||||
max-width: #{$i}vw;
|
||||
}
|
||||
|
||||
.max-width-#{$i}vw {
|
||||
max-width: #{$i}vw;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.uk-switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: 24px;
|
||||
width: 42px;
|
||||
|
||||
input {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.uk-switch-slider {
|
||||
background-color: rgba(0, 0, 0, 0.22);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
border-radius: 500px;
|
||||
bottom: 0;
|
||||
cursor: pointer;
|
||||
transition-property: background-color;
|
||||
transition-duration: .05s;
|
||||
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
left: 2px;
|
||||
bottom: 2px;
|
||||
border-radius: 50%;
|
||||
transition-property: transform, box-shadow;
|
||||
transition-duration: .05s;
|
||||
}
|
||||
}
|
||||
|
||||
input:checked + .uk-switch-slider {
|
||||
background-color: #39f !important;
|
||||
}
|
||||
|
||||
input:checked + .uk-switch-slider:before {
|
||||
transform: translateX(18px);
|
||||
}
|
||||
|
||||
.uk-switch-slider.uk-switch-on-off {
|
||||
background-color: #f0506e;
|
||||
}
|
||||
input:checked + .uk-switch-slider.uk-switch-on-off {
|
||||
background-color: #32d296 !important;
|
||||
}
|
||||
|
||||
.uk-switch-slider.uk-switch-big:before {
|
||||
transform: scale(1.2);
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
.uk-switch-slider.uk-switch-small:before {
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
input:checked + .uk-switch-slider.uk-switch-big:before {
|
||||
transform: translateX(18px) scale(1.2);
|
||||
}
|
||||
|
||||
.uk-text-muted {
|
||||
color: map_get(map_get($themes, $theme), 'primary-text-muted') !important;
|
||||
}
|
||||
}
|
||||
|
||||
html[data-theme="dark"] {
|
||||
@include render_theme('dark')
|
||||
}
|
||||
|
||||
html[data-theme="light"] {
|
||||
@include render_theme('light')
|
||||
}
|
||||
|
||||
.uk-label {
|
||||
background: rgb(11, 89, 166);
|
||||
}
|
||||
|
||||
.uk-label-success {
|
||||
background-color: rgb(22, 101, 72);
|
||||
}
|
||||
|
||||
.uk-label-warning {
|
||||
background-color: rgb(145, 66, 4);
|
||||
}
|
||||
|
||||
:not(pre) > code, :not(pre) > kbd, :not(pre) > samp {
|
||||
color: rgb(170, 15, 44);
|
||||
background-color: rgb(248, 248, 248);
|
||||
}
|
69
apps/gnous_eu/templates/about.html
Normal file
|
@ -0,0 +1,69 @@
|
|||
{% extends 'layouts/base.html' %}
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<div class="uk-flex uk-flex-middle">
|
||||
<div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top">
|
||||
<h1 class="uk-margin-remove-bottom uk-text-bold">{% trans 'À propos' %}</h1>
|
||||
|
||||
<div class="uk-margin">
|
||||
{% blocktrans %}
|
||||
<p>GnousEU est une communauté de passionnés du libre ayant débuté en février 2017 sur la plateforme Discord.
|
||||
Depuis elle s'est diversifiée sur plusieurs plateformes hébergées par elle-même en favorisant les instances décentralisées.
|
||||
Elle ne cesse de grandir de jour en jour et est ouverte à tous nouveaux membres.
|
||||
Un système de recensement des membre et d'interconnexion des plateformes est toujours à l'étude pour permettre une meilleure continuité au sein de la communauté.
|
||||
Actuellement la grande majorité de ses membres se trouvent sur le serveur Discord.</p>
|
||||
<p>Cette communauté à été créée par <code><a href="https://enpls.org">Mael G. aka Outout</a></code> et est administrée par lui-même
|
||||
mais aussi par <code><a href="https://git.gnous.eu/Romain">Romain J.</a></code>,
|
||||
<code><a href="https://git.gnous.eu/Rick">Rick K.</a></code>,
|
||||
<code><a href="https://l4p1n.ch/">L4p1n</a></code>,
|
||||
<code>DoomQuakeKeen</code> et
|
||||
<code><a href="https://huteau-leo.fr/">Léo H</a></code>. Avant son départ, <code><a href="https://git.gnous.eu/orakle">Orakle</a></code> s'occupait du design.</p>
|
||||
<p>GnousEU est hébergé sur l'infrastructure <a href='https://enpls.org/'>EnPLS.org</a> disposant de serveurs en France, Pays-Bas, Allemagne et Guadeloupe.</p>
|
||||
{% endblocktrans %}
|
||||
</div>
|
||||
|
||||
<hr class="uk-margin-large">
|
||||
|
||||
<h2 class="uk-margin-remove-bottom uk-text-bold uk-text-center">{% trans 'Partenaires' %}</h2>
|
||||
|
||||
<div class="uk-margin">
|
||||
{% if partners|length >= 1 %}
|
||||
<div class="uk-grid uk-grid-margin-medium uk-child-width-1-3@m">
|
||||
{% for partner in partners %}
|
||||
<div class="uk-margin-bottom">
|
||||
<div class="uk-card uk-card-secondary">
|
||||
<div class="uk-card-media-top uk-text-center">
|
||||
<img class="uk-align-center" src="{{ partner.photo.url }}" loading="lazy" alt="{{ partner.name }}" width="320" height="240">
|
||||
</div>
|
||||
<div class="uk-card-body">
|
||||
<h3 class="uk-card-title uk-margin-remove-bottom">
|
||||
{{ partner.name }}
|
||||
</h3>
|
||||
<code>{{ partner.domain }}</code>
|
||||
|
||||
<p>{% get_current_language as LANGUAGE_CODE %}{% if LANGUAGE_CODE == 'en' and partner.description_en != None %}{{ partner.description_en }}{% else %}{{ partner.description }}{% endif %}</p>
|
||||
<a href="https://{{ partner.domain }}" class="uk-text-large">{% trans "Voir" %}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="uk-width-2-3@m uk-align-center">
|
||||
<div class="uk-card">
|
||||
<div class="uk-card-header">
|
||||
<div class="uk-grid-small uk-flex-middle uk-grid">
|
||||
<div class="uk-width-2-3">
|
||||
<h3 class="uk-card-title uk-text-bold uk-text-danger">{% trans "Nous n'avons aucun partenaire..." %}</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
31
apps/gnous_eu/templates/index.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
{% extends 'layouts/base.html' %}
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<div class="uk-flex uk-flex-middle top-wrap-height">
|
||||
<div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top">
|
||||
<div class="uk-child-width-expand@s uk-grid">
|
||||
<div class="uk-grid-item-match uk-first-column">
|
||||
<div>
|
||||
<h1 class="uk-margin-remove-bottom uk-text-bold">GnousEU</h1>
|
||||
<p class="uk-margin-remove-bottom subtitle-text uk-text-bold">{% trans "Communauté francophone de passionnés du libre depuis 2017." %}</p>
|
||||
</div>
|
||||
<div class="uk-grid">
|
||||
<div>
|
||||
<a class="uk-button" href="{% url 'gnous_eu:services' %}">{% trans "Nos services" %}</a>
|
||||
</div>
|
||||
<div>
|
||||
<a class="uk-button" href="{% url 'gnous_eu:about' %}">{% trans "À propos" %}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="uk-width-expand">
|
||||
<img src="{% static 'images/illustrations/services.svg' %}" loading="lazy" alt="Image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
31
apps/gnous_eu/templates/layouts/base.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
{% get_current_language as LANGUAGE_CODE %}
|
||||
<html lang="{{ LANGUAGE_CODE }}" data-theme="dark">
|
||||
{% include 'layouts/head.html' %}
|
||||
<body>
|
||||
|
||||
<div id="app">
|
||||
<div class="uk-flex uk-flex-column min-height-100vh">
|
||||
{% include 'layouts/header.html' %}
|
||||
|
||||
<div class="uk-flex-1">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
{% include 'layouts/footer.html' %}
|
||||
</div>
|
||||
|
||||
{% include 'layouts/sidebar.html' %}
|
||||
</div>
|
||||
|
||||
|
||||
{% include 'layouts/foot.html' %}
|
||||
|
||||
{% block javascript %}{% endblock %}
|
||||
|
||||
</body>
|
||||
</html>
|
70
apps/gnous_eu/templates/layouts/foot.html
Normal file
|
@ -0,0 +1,70 @@
|
|||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
|
||||
<!--/
|
||||
Je suis spécialisé en python, pas en js...
|
||||
Don't judge me
|
||||
/-->
|
||||
|
||||
{#<script src="{% static 'javascripts/uikit/uikit.min.js' %}"></script>#}
|
||||
{#<script src="{% static 'javascripts/uikit/uikit-icons.min.js' %}"></script>#}
|
||||
|
||||
<!-- theme -->
|
||||
<script>
|
||||
window.themeCheckboxes = ["theme", "themeSidebar"];
|
||||
|
||||
themeCheckboxes.forEach(checkbox => {
|
||||
const theme = document.querySelector(`input[name=${checkbox}]`);
|
||||
|
||||
theme.addEventListener('change', function () {
|
||||
applyTheme(theme.checked ? 'dark' : 'light');
|
||||
console.log(theme)
|
||||
})
|
||||
|
||||
theme.checked = document.documentElement.getAttribute('data-theme') === 'dark';
|
||||
})
|
||||
window.applyTheme = function (theme) {
|
||||
document.documentElement.setAttribute('data-theme', theme);
|
||||
|
||||
let cards = document.querySelectorAll(".uk-card.uk-card-default,.uk-card.uk-card-secondary");
|
||||
cards.forEach(card => {
|
||||
if (theme === 'dark') {
|
||||
card.classList.replace("uk-card-default", `uk-card-secondary`)
|
||||
} else {
|
||||
card.classList.replace("uk-card-secondary", `uk-card-default`)
|
||||
}
|
||||
})
|
||||
|
||||
window.sessionStorage.setItem('theme', theme)
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- sidebar -->
|
||||
<script>
|
||||
offcanvas_nav = document.getElementById("offcanvas-nav");
|
||||
trigger = document.querySelector("a.uk-navbar-toggle")
|
||||
|
||||
trigger.addEventListener("click", e => {
|
||||
offcanvas_nav.classList.add("uk-offcanvas", "uk-offcanvas-overlay", "uk-open")
|
||||
})
|
||||
|
||||
offcanvas_nav.querySelector("button.uk-close").addEventListener("click", e => {
|
||||
offcanvas_nav.classList.remove("uk-offcanvas-overlay", "uk-open")
|
||||
})
|
||||
</script>
|
||||
|
||||
<!-- save theme -->
|
||||
<script>
|
||||
theme_session = window.sessionStorage.getItem('theme')
|
||||
if (theme_session !== null) {
|
||||
applyTheme(theme_session);
|
||||
|
||||
themeCheckboxes.forEach(checkbox => {
|
||||
document.querySelector(`input[name=${checkbox}]`).checked = theme_session === 'dark'
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- status page -->
|
||||
<script src="https://qgdzfv56ntr8.statuspage.io/embed/script.js"></script>
|
27
apps/gnous_eu/templates/layouts/footer.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
{% load i18n %}
|
||||
{% load version %}
|
||||
|
||||
<footer class="uk-padding-remove-bottom">
|
||||
<div class="uk-text-center uk-padding uk-padding-remove-bottom uk-flex">
|
||||
<div class="uk-align-center">
|
||||
<span class="uk-text-small uk-text-muted">© {% now "Y" %} GnousEU | {% trans "Designé par" %} </span>
|
||||
<a class="uk-text-small uk-button-link" href="https://git.gnous.eu/mael">Mael G.</a>
|
||||
|
||||
<span class="uk-text-small uk-text-muted"> - {% trans "Créé par" %} </span>
|
||||
<a class="uk-text-small uk-button-link" href="https://git.gnous.eu/Romain">Romain J.</a>
|
||||
|
||||
<span class="uk-text-small uk-text-muted"> | {% trans "Fait avec" %} </span>
|
||||
<a href="http://getuikit.com" target="_blank" class="uk-text-small uk-button-link" title="UIKit"><span data-uk-icon="uikit" class="uk-icon"><svg aria-label="UIKit" width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" data-svg="uikit"><polygon
|
||||
points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"></polygon><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"></polygon></svg></span></a>
|
||||
|
||||
<span class="uk-text-small uk-text-muted"> | Version: </span>
|
||||
<a href="https://git.gnous.eu/gnouseu/gnousdoteu/src/commit/{% version 'long' %}" target="_blank" class="uk-text-small uk-button-link">{% version 'short' %}</a>
|
||||
</div>
|
||||
<div class="uk-float-right uk-visible@s">
|
||||
<label class="uk-switch need-js" for="themeSwitcher" aria-label="Theme">
|
||||
<input type="checkbox" id="themeSwitcher" name="theme">
|
||||
<span class="uk-switch-slider"></span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
64
apps/gnous_eu/templates/layouts/head.html
Normal file
|
@ -0,0 +1,64 @@
|
|||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta name="turbolinks-cache-control" content="no-preview">
|
||||
<link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" type="image/x-icon">
|
||||
|
||||
<title>Gnous.eu
|
||||
{% if request.resolver_match.url_name == 'index' %} - {% trans "Accueil" %} {% endif %}
|
||||
{% if request.resolver_match.url_name == 'services' %} - {% trans "Services" %} {% endif %}
|
||||
{% if request.resolver_match.url_name == 'about' %} - {% trans "À propos" %} {% endif %}
|
||||
{% if request.resolver_match.url_name == 'tips' %} - {% trans "Dons" %} {% endif %}
|
||||
</title>
|
||||
|
||||
<meta name="description" content="GnousEU est une communauté francophone de passionnés du libre. Elle fournit entre autre des services gratuits libres d'accès.">
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="{{ request.path }} ">
|
||||
<meta property="og:site_name" content="GnousEU" />
|
||||
<meta property="og:description" content="GnousEU est une communauté francophone de passionnés du libre. Elle fournit entre autre des services gratuits libres d'accès.">
|
||||
<meta property="og:image" content="{% static 'images/gnous.png' %}">
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:url" content="{{ request.path }} ">
|
||||
<meta property="twitter:description" content="GnousEU est une communauté francophone de passionnés du libre. Elle fournit entre autre des services gratuits libres d'accès.">
|
||||
<meta property="twitter:image" content="{% static 'images/gnous.png' %}">
|
||||
|
||||
{% if request.resolver_match.url_name == 'index' %}
|
||||
<meta name="title" content="Gnous.eu - Bienvenue">
|
||||
<meta property="og:title" content="Gnous.eu - Bienvenue">
|
||||
<meta property="twitter:title" content="Gnous.eu - Bienvenue">
|
||||
{% elif request.resolver_match.url_name == 'services' %}
|
||||
<meta name="title" content="Gnous.eu - Services">
|
||||
<meta property="og:title" content="Gnous.eu - Services">
|
||||
<meta property="twitter:title" content="Gnous.eu - Services">
|
||||
{% elif request.resolver_match.url_name == 'about' %}
|
||||
<meta name="title" content="Gnous.eu - À propos">
|
||||
<meta property="og:title" content="Gnous.eu - À propos">
|
||||
<meta property="twitter:title" content="Gnous.eu - À propos">
|
||||
{% elif request.resolver_match.url_name == 'tips' %}
|
||||
<meta name="title" content="Gnous.eu - Don">
|
||||
<meta property="og:title" content="Gnous.eu - Don">
|
||||
<meta property="twitter:title" content="Gnous.eu - Don">
|
||||
{% endif %}
|
||||
|
||||
|
||||
<link rel="stylesheet" href="{% static 'stylesheets/css/index.min.css' %}">
|
||||
|
||||
<script src="{% static 'javascripts/turbolinks.js' %}"></script>
|
||||
<script src="{% static 'javascripts/main.js' %}" defer></script>
|
||||
|
||||
<noscript>
|
||||
<style>
|
||||
.need-js {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
</noscript>
|
||||
</head>
|
71
apps/gnous_eu/templates/layouts/header.html
Normal file
|
@ -0,0 +1,71 @@
|
|||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<div class="nav">
|
||||
<div class="uk-container">
|
||||
<nav class="uk-navbar uk-navbar-container uk-navbar-transparent">
|
||||
<div class="uk-navbar-left">
|
||||
<div class="uk-navbar-item uk-padding-remove-horizontal">
|
||||
<a class="uk-logo uk-border-rounded" title="Logo" href="{% url 'gnous_eu:index' %}">
|
||||
<img src="{% static 'images/gnous.svg' %}" alt="Logo" width="42" height="42">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="uk-navbar-nav uk-visible@s">
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:index' %}"
|
||||
class="uk-text-bolder {% if request.resolver_match.url_name == 'index' %} active {% endif %}">
|
||||
{% trans "Accueil" %}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:services' %}"
|
||||
class="uk-text-bolder {% if request.resolver_match.url_name == 'services' %} active {% endif %}">
|
||||
{% trans "Services" %}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="uk-navbar-right">
|
||||
<ul class="uk-navbar-nav uk-visible@s">
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:about' %}"
|
||||
class="uk-text-bolder {% if request.resolver_match.url_name == 'about' %} active {% endif %}">
|
||||
{% trans "À propos" %}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:tips' %}"
|
||||
class="uk-text-bolder {% if request.resolver_match.url_name == 'tips' %} active {% endif %}">
|
||||
{% trans "Donner" %}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="uk-navbar-item uk-visible@s">
|
||||
<form action="{% url 'set_language' %}" method="post">
|
||||
{% csrf_token %}
|
||||
{% get_current_language as LANGUAGE_CODE %}
|
||||
{% if LANGUAGE_CODE == 'en' %}
|
||||
<button type="submit" style="background: transparent; border: none">
|
||||
<img src="{% static 'images/icons/fr.svg' %}" alt="fr" width="18">
|
||||
</button>
|
||||
<input type="hidden" name="language" value="fr">
|
||||
{% else %}
|
||||
<button type="submit" style="background: transparent; border: none">
|
||||
<img src="{% static 'images/icons/en.svg' %}" alt="en" width="18">
|
||||
</button>
|
||||
<input type="hidden" name="language" value="en">
|
||||
{% endif %}
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<a class="uk-navbar-toggle uk-navbar-item uk-hidden@s">
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" data-svg="navbar-toggle-icon">
|
||||
<rect y="9" width="20" height="2"></rect>
|
||||
<rect y="3" width="20" height="2"></rect>
|
||||
<rect y="15" width="20" height="2"></rect>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
73
apps/gnous_eu/templates/layouts/sidebar.html
Normal file
|
@ -0,0 +1,73 @@
|
|||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<div id="offcanvas-nav" data-uk-offcanvas="flip: true; overlay: true;" class="uk-offcanvas" style="display: block">
|
||||
<div class="uk-offcanvas-bar uk-offcanvas-bar-animation uk-offcanvas-slide">
|
||||
<button class="uk-offcanvas-close uk-icon uk-close" aria-label="Close" type="button">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg" data-svg="close-icon">
|
||||
<line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"></line>
|
||||
<line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"></line>
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<ul class="uk-nav uk-nav-default">
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:index' %}"
|
||||
class="uk-text-bolder"
|
||||
{% if request.resolver_match.url_name == 'index' %}
|
||||
style="text-decoration: underline" {% endif %}>
|
||||
<span class="uk-margin-small-right uk-icon" data-uk-icon="world"></span> {% trans "Accueil" %}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:services' %}"
|
||||
class="uk-text-bolder"
|
||||
{% if request.resolver_match.url_name == 'services' %}
|
||||
style="text-decoration: underline" {% endif %}>
|
||||
<span class="uk-margin-small-right uk-icon" data-uk-icon="grid"></span> {% trans "Services" %}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{% url 'gnous_eu:about' %}"
|
||||
class="uk-text-bolder"
|
||||
{% if request.resolver_match.url_name == 'about' %}
|
||||
style="text-decoration: underline" {% endif %}>
|
||||
<span class="uk-margin-small-right uk-icon" data-uk-icon="info"></span> {% trans "À propos" %}
|
||||
</a>
|
||||
<a href="{% url 'gnous_eu:tips' %}"
|
||||
class="uk-text-bolder"
|
||||
{% if request.resolver_match.url_name == 'tips' %}
|
||||
style="text-decoration: underline" {% endif %}>
|
||||
<span class="uk-margin-small-right uk-icon" data-uk-icon="credit-card"></span> {% trans "Donner" %}
|
||||
</a>
|
||||
</li>
|
||||
<li class="uk-nav-divider"></li>
|
||||
<li>
|
||||
<div class="uk-flex-between uk-flex">
|
||||
<div>
|
||||
<form action="{% url 'set_language' %}" method="post" name="languageForm2">
|
||||
{% csrf_token %}
|
||||
{% get_current_language as LANGUAGE_CODE %}
|
||||
{% if LANGUAGE_CODE == 'en' %}
|
||||
<img src="{% static 'images/icons/fr.svg' %}" alt="en"
|
||||
onclick="window.document.languageForm2.submit()" width="18" height="18">
|
||||
<input type="hidden" name="language" value="fr">
|
||||
{% else %}
|
||||
<img src="{% static 'images/icons/en.svg' %}" alt="fr"
|
||||
onclick="window.document.languageForm2.submit()" width="18" height="18">
|
||||
<input type="hidden" name="language" value="en">
|
||||
{% endif %}
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label class="uk-switch need-js" for="themeSwitcherSidebar">
|
||||
<input type="checkbox" id="themeSwitcherSidebar" name="themeSidebar">
|
||||
<span class="uk-switch-slider"></span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
124
apps/gnous_eu/templates/services.html
Normal file
|
@ -0,0 +1,124 @@
|
|||
{% extends 'layouts/base.html' %}
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<div class="uk-margin-medium-top">
|
||||
<div class="uk-container uk-flex-auto top-container uk-position-relative uk-margin-medium-top">
|
||||
<div class="uk-width-1-2@l uk-width-1-1 uk-align-center">
|
||||
<div class="uk-inline uk-width-1-1@l">
|
||||
<h1 class="uk-text-bold uk-text-center">{% trans 'Nos services' %}</h1>
|
||||
<p>{% trans "GnousEU propose à tous des services gratuits et libre d'utilisations à tous. Ces services sont majoritairement opensource et ne volent pas vos précieuses données personnelles." %}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-width-1-2@l uk-width-1-1 uk-align-center uk-margin-large-bottom">
|
||||
<form action="{% url 'gnous_eu:services' %}" method="get" id="searchForm">
|
||||
<div class="uk-inline uk-width-1-1@l">
|
||||
<button class="uk-form-icon uk-form-icon-flip uk-icon" aria-label="Search" data-uk-icon="search" type="submit"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" data-svg="search"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"></circle><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"></path></svg></button>
|
||||
<label for="searchInput">
|
||||
<input class="uk-input" type="search" id="searchInput" name="search"
|
||||
placeholder="{% trans 'Rechercher...' %}" {% if search %} value="{{ search }}" {% endif %}>
|
||||
</label>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{% if services|length >= 1 %}
|
||||
<div class="uk-grid uk-grid-margin-medium uk-child-width-1-3@m">
|
||||
{% for service in services %}
|
||||
<div class="uk-margin-bottom">
|
||||
<div class="uk-card uk-card-secondary">
|
||||
<div class="uk-card-media-top uk-text-center">
|
||||
<a href="https://{{ service.domain }}" target="_blank">
|
||||
<img src="{{ service.photo.url }}" loading="lazy" alt="{{ service.name }}" width="320" height="240">
|
||||
</a>
|
||||
</div>
|
||||
<div class="uk-card-body">
|
||||
<h3 class="uk-card-title uk-margin-remove-bottom">
|
||||
<a href="https://{{ service.domain }}"target="_blank">{{ service.name }}</a>
|
||||
</h3>
|
||||
<code>{{ service.domain }}</code>
|
||||
|
||||
<p>{% get_current_language as LANGUAGE_CODE %}{% if LANGUAGE_CODE == 'en' and service.description_en != None %}{{ service.description_en }}{% else %}{{ service.description }}{% endif %}</p>
|
||||
<a href="https://{{ service.domain }}" class="uk-text-large" target="_blank">{% trans "Rejoindre !" %}</a>
|
||||
</div>
|
||||
<div class="uk-card-footer uk-card-media">
|
||||
{% if service.sources == 'CLOSED' %}
|
||||
<span class="uk-label uk-label-warning">{% trans service.get_sources_display %}</span>
|
||||
{% elif service.sources == 'OPEN' %}
|
||||
<span class="uk-label uk-label-success">{% trans service.get_sources_display %}</span>
|
||||
{% else %}
|
||||
<span class="uk-label">{% trans service.get_sources_display %}</span>
|
||||
{% endif %}
|
||||
|
||||
{% if service.hosted == 'CENT' %}
|
||||
<span class="uk-label uk-label-warning">{% trans service.get_hosted_display %}</span>
|
||||
{% elif service.hosted == 'FED' %}
|
||||
<span class="uk-label uk-label-success">{% trans service.get_hosted_display %}</span>
|
||||
{% else %}
|
||||
<span class="uk-label">{% trans service.get_hosted_display %}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<ul class="uk-pagination uk-margin-medium-top">
|
||||
<li class="uk-width-1-3">
|
||||
{% if services.has_previous %}
|
||||
<a {% if search %}
|
||||
href="?search={{ search }}&page={{ services.previous_page_number }}"
|
||||
{% else %}
|
||||
href="?page={{ services.previous_page_number }}"
|
||||
{% endif %} class="uk-button">
|
||||
<span class="uk-margin-small-right" data-uk-pagination-previous></span> {% trans "Précédent" %}
|
||||
</a>
|
||||
{% endif %}
|
||||
</li>
|
||||
<li class="uk-width-1-3">
|
||||
<span class="uk-button">{{ services.number }}/{{ services.paginator.num_pages }}</span>
|
||||
</li>
|
||||
|
||||
<li class="uk-width-1-3">
|
||||
{% if services.has_next %}
|
||||
<a {% if search %}
|
||||
href="?search={{ search }}&page={{ services.next_page_number }}"
|
||||
{% else %}
|
||||
href="?page={{ services.next_page_number }}"
|
||||
{% endif %} class="uk-button">
|
||||
{% trans "Suivant" %} <span class="uk-margin-small-left" data-uk-pagination-next></span>
|
||||
</a>
|
||||
{% endif %}
|
||||
</li>
|
||||
</ul>
|
||||
{% else %}
|
||||
<div class="uk-width-2-3@m uk-align-center">
|
||||
<div class="uk-card">
|
||||
<div class="uk-card-header">
|
||||
<div class="uk-grid-small uk-flex-middle uk-grid">
|
||||
<div class="uk-width-2-3">
|
||||
<h3 class="uk-card-title uk-text-bold uk-text-danger">{% trans "Aucun service trouvé pour la recheche: " %}</h3>
|
||||
<p class="uk-margin-large">{{ search }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block javascript %}
|
||||
<script>
|
||||
window.searchForm = document.getElementById('searchForm');
|
||||
window.searchInputearch = searchForm.querySelector('input#searchInput');
|
||||
|
||||
searchInputearch.addEventListener('keypress', e => {
|
||||
if (e.which === 13) {
|
||||
searchForm.submit();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
45
apps/gnous_eu/templates/tips.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
{% extends 'layouts/base.html' %}
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<div class="uk-flex uk-flex-middle">
|
||||
<div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top">
|
||||
<div class="uk-grid" data-uk-grid="masonry: true">
|
||||
<div class="uk-width-1">
|
||||
<h1 class="uk-heading-line uk-margin-remove-bottom uk-text-bold uk-text-center">
|
||||
<span>{% trans 'Donnez à GnousEU' %}</span>
|
||||
</h1>
|
||||
<p class="uk-text-center">{% trans 'Participez au développement de la communauté de GnousEU via un don monétaire via le site Tipeee.' %}</p>
|
||||
<div class="uk-margin-remove-bottom uk-text-bold uk-text-center">
|
||||
<a href="https://fr.tipeee.com/gnouseu" class="uk-text-center">
|
||||
<img src="{% static 'images/icons/tipeee-tip-btn.png' %}" alt="tipeee logo" width="140">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="uk-width-1 uk-margin-large-top">
|
||||
<h2 class="uk-heading-line uk-margin-remove-bottom uk-text-bold uk-text-center">
|
||||
<span>{% trans 'Vous souhaitez nous donner du materiel ?' %}</span>
|
||||
</h2>
|
||||
<p class="uk-text-center">{% trans 'Vous disposez de materiel réseau ou serveur usagé et vous ne savez pas quoi en faire ?' %}</p>
|
||||
<p class="uk-text-center">
|
||||
{% trans 'Contactez nous par mail à ' %}
|
||||
<code><a href="mailto:dons@gnous.eu">dons@gnous.eu</a></code>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="uk-width-1 uk-margin-large-top">
|
||||
<h2 class="uk-heading-line uk-margin-remove-bottom uk-text-bold uk-text-center">
|
||||
<span>{% trans 'Vous êtes fournisseur de services ?' %}</span>
|
||||
</h2>
|
||||
<p class="uk-text-center">{% trans 'Discutons plus en détails de votre proposition ! Nous sommes ouvert à tout partenariat.' %}</p>
|
||||
<p class="uk-text-center">
|
||||
{% trans 'Contactez nous par mail à ' %}
|
||||
<code><a href="mailto:mael@gnous.eu">mael@gnous.eu</a></code>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
0
apps/gnous_eu/templatetags/__init__.py
Normal file
15
apps/gnous_eu/templatetags/version.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from django import template
|
||||
import subprocess
|
||||
|
||||
register = template.Library()
|
||||
|
||||
|
||||
@register.simple_tag
|
||||
def version(size):
|
||||
command = ['git', 'rev-parse']
|
||||
if size == 'short':
|
||||
command += ['--short', 'HEAD']
|
||||
else:
|
||||
command += ['HEAD']
|
||||
|
||||
return subprocess.check_output(command).decode()
|
3
apps/gnous_eu/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
14
apps/gnous_eu/urls.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
from django.urls import path
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from .views import ServicesView, PartnersView
|
||||
|
||||
app_name = "gnous_eu"
|
||||
|
||||
urlpatterns = [
|
||||
path("", TemplateView.as_view(template_name="index.html"), name="index"),
|
||||
path("about", PartnersView.index, name="about"),
|
||||
path("tips", TemplateView.as_view(template_name="tips.html"), name="tips"),
|
||||
path("donate", TemplateView.as_view(template_name="tips.html"), name="tips"),
|
||||
path("services", ServicesView.index, name="services"),
|
||||
]
|
47
apps/gnous_eu/views.py
Normal file
|
@ -0,0 +1,47 @@
|
|||
from django.core.paginator import Paginator
|
||||
from django.db.models import Q
|
||||
from django.http import HttpResponse, HttpRequest
|
||||
from django.shortcuts import render
|
||||
|
||||
from apps.gnous_eu.models import Service, Partner
|
||||
|
||||
TEMPLATE_PATH = "./"
|
||||
|
||||
|
||||
class ServicesView:
|
||||
@staticmethod
|
||||
def index(request: HttpRequest, *args, **kwargs) -> HttpResponse:
|
||||
search: str = request.GET.get("search", False)
|
||||
|
||||
if search:
|
||||
data_services = Service.objects.all().filter(
|
||||
Q(id__exact=int(search) if search.isdigit() else 0)
|
||||
| Q(name__icontains=search)
|
||||
| Q(description__icontains=search)
|
||||
| Q(sources__icontains=search)
|
||||
| Q(hosted__icontains=search)
|
||||
| Q(domain__icontains=search)
|
||||
| Q(sources__icontains=search)
|
||||
| Q(hosted__icontains=search)
|
||||
)
|
||||
else:
|
||||
data_services = Service.objects.all().filter(hidden=False)
|
||||
paginator = Paginator(data_services, 30)
|
||||
|
||||
page = request.GET.get("page")
|
||||
|
||||
return render(
|
||||
request,
|
||||
TEMPLATE_PATH + "services.html",
|
||||
{"services": paginator.get_page(page), "search": search},
|
||||
)
|
||||
|
||||
|
||||
class PartnersView:
|
||||
@staticmethod
|
||||
def index(request: HttpRequest, *args, **kwargs) -> HttpResponse:
|
||||
return render(
|
||||
request,
|
||||
TEMPLATE_PATH + "about.html",
|
||||
{"partners": Partner.objects.all().filter(hidden=False)},
|
||||
)
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"require": {
|
||||
"smarty/smarty": "^3.1"
|
||||
}
|
||||
}
|
71
composer.lock
generated
|
@ -1,71 +0,0 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "99bccada065081929698167137529f9f",
|
||||
"packages": [
|
||||
{
|
||||
"name": "smarty/smarty",
|
||||
"version": "v3.1.33",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/smarty-php/smarty.git",
|
||||
"reference": "dd55b23121e55a3b4f1af90a707a6c4e5969530f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/smarty-php/smarty/zipball/dd55b23121e55a3b4f1af90a707a6c4e5969530f",
|
||||
"reference": "dd55b23121e55a3b4f1af90a707a6c4e5969530f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.2"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.1.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"libs/bootstrap.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"LGPL-3.0"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Monte Ohrt",
|
||||
"email": "monte@ohrt.com"
|
||||
},
|
||||
{
|
||||
"name": "Uwe Tews",
|
||||
"email": "uwe.tews@googlemail.com"
|
||||
},
|
||||
{
|
||||
"name": "Rodney Rehm",
|
||||
"email": "rodney.rehm@medialize.de"
|
||||
}
|
||||
],
|
||||
"description": "Smarty - the compiling PHP template engine",
|
||||
"homepage": "http://www.smarty.net",
|
||||
"keywords": [
|
||||
"templating"
|
||||
],
|
||||
"time": "2018-09-12T20:54:16+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"stability-flags": [],
|
||||
"prefer-stable": false,
|
||||
"prefer-lowest": false,
|
||||
"platform": [],
|
||||
"platform-dev": []
|
||||
}
|
0
gnousEU/__init__.py
Normal file
16
gnousEU/asgi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
ASGI config for gnousEU project.
|
||||
|
||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.asgi import get_asgi_application
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gnousEU.settings")
|
||||
|
||||
application = get_asgi_application()
|
15
gnousEU/local_settings.py.example
Normal file
|
@ -0,0 +1,15 @@
|
|||
SECRET_KEY = "hi there"
|
||||
|
||||
DATABASES = {
|
||||
"default": {
|
||||
"ENGINE": "django.db.backends.mysql",
|
||||
"NAME": "gnouseu",
|
||||
"USER": "root",
|
||||
"PASSWORD": "root",
|
||||
"OPTIONS": {"charset": "utf8mb4"},
|
||||
}
|
||||
}
|
||||
|
||||
ALLOWED_HOSTS = ["127.0.0.1", "localhost", "192.168.1.21", "django", "gnous.eu"]
|
||||
|
||||
DEBUG = True
|
119
gnousEU/settings.py
Normal file
|
@ -0,0 +1,119 @@
|
|||
"""
|
||||
Django settings for gnousEU project.
|
||||
|
||||
Generated by 'django-admin startproject' using Django 3.0.2.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.0/topics/settings/
|
||||
|
||||
For the full list of settings and their values, see
|
||||
https://docs.djangoproject.com/en/3.0/ref/settings/
|
||||
"""
|
||||
|
||||
import os
|
||||
from gnousEU import local_settings
|
||||
|
||||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
||||
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
|
||||
# Quick-start development settings - unsuitable for production
|
||||
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = local_settings.SECRET_KEY
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = local_settings.DEBUG
|
||||
|
||||
ALLOWED_HOSTS = local_settings.ALLOWED_HOSTS
|
||||
CSRF_TRUSTED_ORIGINS = ['gnous.eu']
|
||||
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
"django.contrib.auth",
|
||||
"django.contrib.contenttypes",
|
||||
"django.contrib.sessions",
|
||||
"django.contrib.messages",
|
||||
"django.contrib.staticfiles",
|
||||
"apps.gnous_eu",
|
||||
"apps.gnous_eu.apps.SuitConfig",
|
||||
"django.contrib.admin",
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
"django.middleware.security.SecurityMiddleware",
|
||||
"django.contrib.sessions.middleware.SessionMiddleware",
|
||||
'django.middleware.locale.LocaleMiddleware',
|
||||
"django.middleware.common.CommonMiddleware",
|
||||
"django.middleware.csrf.CsrfViewMiddleware",
|
||||
"django.contrib.auth.middleware.AuthenticationMiddleware",
|
||||
"django.contrib.messages.middleware.MessageMiddleware",
|
||||
"django.middleware.clickjacking.XFrameOptionsMiddleware",
|
||||
]
|
||||
|
||||
ROOT_URLCONF = "gnousEU.urls"
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
||||
"DIRS": [os.path.join(BASE_DIR, "apps/gnous_eu/templates")],
|
||||
"APP_DIRS": True,
|
||||
"OPTIONS": {
|
||||
"context_processors": [
|
||||
"django.template.context_processors.debug",
|
||||
"django.template.context_processors.request",
|
||||
"django.contrib.auth.context_processors.auth",
|
||||
"django.contrib.messages.context_processors.messages",
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
WSGI_APPLICATION = "gnousEU.wsgi.application"
|
||||
|
||||
# Database
|
||||
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
||||
|
||||
DATABASES = local_settings.DATABASES
|
||||
|
||||
# Password validation
|
||||
# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
|
||||
|
||||
AUTH_PASSWORD_VALIDATORS = [
|
||||
{
|
||||
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
|
||||
},
|
||||
{"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",},
|
||||
{"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",},
|
||||
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",},
|
||||
]
|
||||
|
||||
# Internationalization
|
||||
# https://docs.djangoproject.com/en/3.0/topics/i18n/
|
||||
|
||||
LANGUAGE_CODE = "fr"
|
||||
|
||||
TIME_ZONE = "UTC"
|
||||
|
||||
USE_I18N = True
|
||||
|
||||
USE_L10N = True
|
||||
|
||||
USE_TZ = True
|
||||
|
||||
LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),)
|
||||
|
||||
LANGUAGES = (
|
||||
("fr", "FR"),
|
||||
("en", "EN"),
|
||||
)
|
||||
|
||||
# Static files (CSS, JavaScript, Images)
|
||||
# https://docs.djangoproject.com/en/3.0/howto/static-files/
|
||||
|
||||
STATIC_URL = "/static/"
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
||||
|
||||
MEDIA_URL = "/media/"
|
||||
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
25
gnousEU/urls.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
"""gnousEU URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/3.0/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Import the include() function: from django.urls import include, path
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
from django.conf.urls.static import static
|
||||
from django.conf import settings
|
||||
|
||||
urlpatterns = [
|
||||
path("admin/", admin.site.urls),
|
||||
path("", include("apps.gnous_eu.urls", namespace="gnous_eu")),
|
||||
path("i18n/", include("django.conf.urls.i18n")),
|
||||
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
16
gnousEU/wsgi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
WSGI config for gnousEU project.
|
||||
|
||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gnousEU.settings")
|
||||
|
||||
application = get_wsgi_application()
|
|
@ -1,55 +0,0 @@
|
|||
{
|
||||
"nav_item_home": "Home",
|
||||
"nav_item_services": "Services",
|
||||
"nav_item_about": "About",
|
||||
"nav_item_donate": "Donate",
|
||||
|
||||
"home_title": "GnousEU",
|
||||
"home_description": "French speaking community of free software enthusiasts since 2017.",
|
||||
"home_btn_1": "Join us by discovering our services",
|
||||
|
||||
"services_title": "Our services",
|
||||
"services_description_1": "GnousEU offers all services free and free of uses to all.",
|
||||
"services_description_2": "These services are mostly open source and don't steal your valuable personal data.",
|
||||
"services_text_lead": "What are your preferences",
|
||||
"services_choice_all": "I like everything",
|
||||
"services_choice_opensource": "I am a pure librist",
|
||||
"services_btn_closedsource": "Closed source",
|
||||
"services_btn_centralised": "Censtralised",
|
||||
"services_btn_opensource": "OpenSource",
|
||||
"services_btn_federated": "Federated",
|
||||
"services_btn_unknown": "Unknown",
|
||||
"services_btn_join": "Join !",
|
||||
"services_discord_description": "Join the original discord server of GnousEU ! Active since 2017.",
|
||||
"services_mastodon_description": "Create your account on the Twitter descentralised alternative, Mastodon.",
|
||||
"services_matrix_description": "Get your Matrix identifier, an descentralised and federated alternative to Slack and Discord.",
|
||||
"services_git_description": "Publish your git projects on the public Gitea instance of GnousEU !",
|
||||
"services_mail_description": "Get an @gnous.eu email adress for free now !",
|
||||
"services_talk_description": "Create videoconference and screenshare freely using GnousTalk. This is an alternative to Skype or MicroSoft Teams.",
|
||||
"services_tube_description": "Create, watch and comment videos on PeerTube federation from GnousEU's instance ! An alternative to Youtube, Vimeo, ...",
|
||||
"services_purpose_title": "Submit",
|
||||
"services_purpose_description" : "You want to see a new service ? Submit it !",
|
||||
"services_purpose_btn": "Share my idea !",
|
||||
|
||||
"about_title": "About",
|
||||
"about_description_1": "GnousEU is a community of free software enthusiasts who started in February 2017 on the Discord platform. Since then it has diversified on several platforms hosted by itself by supporting decentralized bodies. It keeps growing day by day and is open to new members. A system of census membership and interconnection of platforms is still under study to allow for better continuity within the community. Currently the vast majority of its members are on the Discord server.",
|
||||
"about_description_2": "This community was created by <code><a href=\"https://outout.xyz/\">Mael G. aka Outout</a></code> and he is administrated by itself with <code>Romain J.</code>, <code><a href=\"https://semapy.xyz\">Rick Krict</a></code> and <code>DoomQuakeKeen</code>.",
|
||||
"about_description_3": "",
|
||||
|
||||
"donate_title": "Donate to GnousEU",
|
||||
"donate_tipeee": "Participate in the development of the GnousEU community via a monetary donation via the Tipeee.",
|
||||
"donate_hardware_title": "You want to give us hardware ?",
|
||||
"donate_hardware_text": "You have network hardware or an old server and you don't know what to do with it ?",
|
||||
"donate_hardware_mail": "Contact us at <code>dons@gnous.eu</code>",
|
||||
"donate_services_title": "You're a service provider ?",
|
||||
"donate_services_text": "Let's discuss your proposal in more detail! We are open to any partnership.",
|
||||
"donate_services_mail": "Contact us at <code>mael@gnous.eu</code>",
|
||||
|
||||
"404_title": "Oups...",
|
||||
"404_text_1": "Sorry but we can't display this page.",
|
||||
"404_text_2": "If you think isn't normal please contact an administrator",
|
||||
"404_btn": "Return to a safe place",
|
||||
"notfound": "Page not found"
|
||||
|
||||
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
{
|
||||
"nav_item_home": "Accueil",
|
||||
"nav_item_services": "Services",
|
||||
"nav_item_about": "A propos",
|
||||
"nav_item_donate": "Donner",
|
||||
|
||||
"home_title": "GnousEU",
|
||||
"home_description": "Communauté francophone de passionnés du libre depuis 2017.",
|
||||
"home_btn_1": "Adhérez en découvrant nos services",
|
||||
|
||||
"services_title": "Nos Services",
|
||||
"services_description_1": "GnousEU propose à tous des services gratuits et libre d'utilisations à tous.",
|
||||
"services_description_2": "Ces services sont majoritairement opensource et ne volent pas vos précieuses données personnelles.",
|
||||
"services_text_lead": "Quelles sont vos préférences",
|
||||
"services_choice_all": "J'aime de tout",
|
||||
"services_choice_opensource": "Je suis un pur libriste",
|
||||
"services_btn_closedsource": "Closed source",
|
||||
"services_btn_centralised": "Centralisé",
|
||||
"services_btn_opensource": "OpenSource",
|
||||
"services_btn_federated": "Fédéré",
|
||||
"services_btn_unknown": "Inconnu",
|
||||
"services_btn_join": "Rejoindre !",
|
||||
"services_discord_description": "Rejoignez le serveur discord original de GnousEU ! Présent depuis 2017.",
|
||||
"services_mastodon_description": "Créez votre compte sur l'alternative à Twitter descentralisée, Mastodon.",
|
||||
"services_matrix_description": "Obtenez votre identifiant Matrix, une alternative descentralisée à Slack et Discord.",
|
||||
"services_git_description": "Publiez vos projets Git sur l'instance Gitea publique de GnousEU !",
|
||||
"services_mail_description": "Obtenez votre compte email en @gnous.eu dès maintenant et gratuitement !",
|
||||
"services_talk_description": "Effectuez gratuitement des visioconférences et des partages d'écran de façon libre et gratuite ! Alternative à Skype ou M$ Team.",
|
||||
"services_tube_description": "Partagez, visionnez et commentez des vidéos sur la fédération PeerTube à partir de l'instance de GnousEU ! Alternative à Youtube, Vimeo, ...",
|
||||
"services_purpose_title": "Proposez",
|
||||
"services_purpose_description" : "Vous souhaitez voir apparaître un nouveaux service ? Proposez le !",
|
||||
"services_purpose_btn": "Partager mon idée !",
|
||||
|
||||
"about_title": "A propos",
|
||||
"about_description_1": "GnousEU est une communauté de passionnés du libre ayant débuté en Février 2017 sur la plateforme Discord. Depuis elle s'est diversifiée sur plusieurs plateformes hébergées par elle même en favoirsant les instances déscentralisées. Elle ne cesse de grandir de jour en jour et est ouverte à tous nouveaux membres. Un système de recensemment des membre et d'interconnexion des plateformes est toujours à l'étude pour permettre une meilleure continuité au sein de la communauté. Actuellement la grande majorité de ses membres se trouvent sur le serveur Discord.",
|
||||
"about_description_2": "Cette communauté à été créée par <code><a href=\"https://enpls.org/\">Mael G. aka Outout</a></code> et est administrée par lui même mais aussi par <code>Romain J.</code>, <code><a href=\"https://semapy.xyz\">Rick Krict</a></code>, <code>DoomQuakeKeen</code> et <code>Orakle</code> au design.",
|
||||
"about_description_3": "GnousEU est hébergé sur l'infrastructure <a href=\"https://enpls.org/weathermap.png\">EnPLS.org</a> disposant de serveurs en France, Pays-Bas, Allemagne et Guadeloupe.",
|
||||
"donate_title": "Donnez à GnousEU",
|
||||
"donate_tipeee": "Participez au développement de la communauté de GnousEU via un don monétaire via le site Tipeee.",
|
||||
"donate_hardware_title": "Vous souhaitez nous donner du materiel ?",
|
||||
"donate_hardware_text": "Vous disposez de materiel réseau ou serveur usagé et vous ne savez pas quoi en faire ?",
|
||||
"donate_hardware_mail": "Contactez nous par mail à <code>dons@gnous.eu</code>",
|
||||
"donate_services_title": "Vous êtes fournisseur de services ?",
|
||||
"donate_services_text": "Discutons plus en détails de votre proposition ! Nous sommes ouvert à tout partenariat.",
|
||||
"donate_services_mail": "Contactez nous par mail à <code>mael@gnous.eu</code>",
|
||||
|
||||
"404_title": "Oups...",
|
||||
"404_text_1": "Désolé mais nous ne sommes pas en mesure d'afficher cette page.",
|
||||
"404_text_2": "Vous pensez que ce n'est pas normal ? Essayez de rentrer en contact avec un administrateur.",
|
||||
"404_btn": "Retourner en lieu sûr",
|
||||
"notfound": "Page introuvable"
|
||||
|
||||
|
||||
}
|
1562
locale/en/LC_MESSAGES/django.po
Normal file
1526
locale/fr/LC_MESSAGES/django.po
Normal file
21
manage.py
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env python
|
||||
"""Django's command-line utility for administrative tasks."""
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gnousEU.settings")
|
||||
try:
|
||||
from django.core.management import execute_from_command_line
|
||||
except ImportError as exc:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
"available on your PYTHONPATH environment variable? Did you "
|
||||
"forget to activate a virtual environment?"
|
||||
) from exc
|
||||
execute_from_command_line(sys.argv)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
BIN
media/partner/milkywan_100.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
|
@ -1,21 +0,0 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
*
|
||||
* Website configuration file. Edit it carefuly
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* $ORIGINAL_URL
|
||||
* IF WEBSITE RUN IN A SUBFOLDER
|
||||
* /!\ ONLY FOR DEVELOPPEMENT /!\
|
||||
*/
|
||||
$ORIGINAL_URL = "";
|
||||
|
||||
/*
|
||||
* $DEFAULT_LANGUAGE
|
||||
* Default language shown in the website
|
||||
* Values : "fr" or "en" type string
|
||||
*/
|
||||
$DEFAULT_LANGUAGE = "fr";
|
|
@ -1,5 +0,0 @@
|
|||
RewriteEngine On
|
||||
RewriteBase /gnousdoteu/public/
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^(.+)$ index.php [QSA,L]
|
1
public/dist/flags.css
vendored
10
public/dist/gnous.js
vendored
|
@ -1,10 +0,0 @@
|
|||
$("#libriste").click(function(){
|
||||
$(".columns").fadeOut(300);
|
||||
$(".closed").fadeOut(300);
|
||||
$(".libre").fadeIn(300);
|
||||
$(".columns").fadeIn(300);
|
||||
});
|
||||
$("#alltype").click(function(){
|
||||
$(".columns").fadeOut(300,function(){$(".libre").show(); $(".closed").show()});
|
||||
$(".columns").fadeIn(300);
|
||||
});
|
24
public/dist/gnous2019.css
vendored
|
@ -1,24 +0,0 @@
|
|||
body{
|
||||
margin-top: 1vh;
|
||||
}
|
||||
.hero{
|
||||
text-align: center;
|
||||
margin: 3vh;
|
||||
}
|
||||
.gradient{
|
||||
background: #6a3093; /* fallback for old browsers */
|
||||
background: -webkit-linear-gradient(to top, #a044ff, #6a3093); /* Chrome 10-25, Safari 5.1-6 */
|
||||
background: linear-gradient(to top, #a044ff, #6a3093); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
||||
}
|
||||
|
||||
.container{
|
||||
margin-top: 10vh;
|
||||
}
|
||||
.btn-libre{
|
||||
width: 40vh;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.services{
|
||||
padding: 10vh;
|
||||
}
|
1
public/dist/spectre-exp.min.css
vendored
1
public/dist/spectre-icons.min.css
vendored
1
public/dist/spectre.min.css
vendored
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 261 KiB |
Before Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 1.7 MiB |