mirror of
https://git.digitalstudium.com/digitalstudium/digitalstudium.com
synced 2023-12-29 08:06:35 +00:00
Remove prism
This commit is contained in:
51
static/admin/config.yml
Normal file
51
static/admin/config.yml
Normal file
@@ -0,0 +1,51 @@
|
||||
backend:
|
||||
name: git-gateway
|
||||
|
||||
local_backend: true
|
||||
|
||||
# These lines should *not* be indented
|
||||
media_folder: "static/images" # Media files will be stored in the repo under static/images/uploads
|
||||
public_folder: "/images" # The src attribute for uploaded media will begin with /images/uploads
|
||||
|
||||
i18n:
|
||||
structure: multiple_folders
|
||||
locales: [en, ru]
|
||||
|
||||
collections:
|
||||
- name: posts
|
||||
label: Posts
|
||||
label_singular: Post
|
||||
folder: content
|
||||
path: '{{category}}/{{slug}}'
|
||||
slug: '{{filename}}{{extension}}'
|
||||
create: true
|
||||
i18n: true
|
||||
view_groups:
|
||||
- label: Year
|
||||
field: date
|
||||
# groups items based on the value matched by the pattern
|
||||
pattern: \d{4}
|
||||
- label: Category
|
||||
field: category
|
||||
fields:
|
||||
- label: Title
|
||||
name: title
|
||||
widget: string
|
||||
i18n: true
|
||||
- label: "Category"
|
||||
name: "category"
|
||||
widget: "select"
|
||||
options: ["/", "linux-lifehacks", "nginx-lifehacks", "python-lifehacks", "ubuntu-lifehacks"]
|
||||
i18n: duplicate
|
||||
- label: Filename
|
||||
name: filename
|
||||
widget: string
|
||||
i18n: duplicate
|
||||
- label: Date
|
||||
name: date
|
||||
widget: datetime
|
||||
i18n: duplicate
|
||||
- label: Body
|
||||
name: body
|
||||
widget: markdown
|
||||
i18n: true
|
13
static/admin/index.html
Normal file
13
static/admin/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="noindex" />
|
||||
<title>Content Manager</title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Include the script that builds the page and powers Decap CMS -->
|
||||
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
|
||||
</body>
|
||||
</html>
|
34
static/images/start-tor-browser.desktop
Normal file
34
static/images/start-tor-browser.desktop
Normal file
@@ -0,0 +1,34 @@
|
||||
#!/usr/bin/env ./Browser/execdesktop
|
||||
#
|
||||
# This file is a self-modifying .desktop file that can be run from the shell.
|
||||
# It preserves arguments and environment for the start-tor-browser script.
|
||||
#
|
||||
# Run './start-tor-browser.desktop --help' to display the full set of options.
|
||||
#
|
||||
# When invoked from the shell, this file must always be in a Tor Browser root
|
||||
# directory. When run from the file manager or desktop GUI, it is relocatable.
|
||||
#
|
||||
# After first invocation, it will update itself with the absolute path to the
|
||||
# current TBB location, to support relocation of this .desktop file for GUI
|
||||
# invocation. You can also add Tor Browser to your desktop's application menu
|
||||
# by running './start-tor-browser.desktop --register-app'
|
||||
#
|
||||
# If you use --register-app, and then relocate your TBB directory, Tor Browser
|
||||
# will no longer launch from your desktop's app launcher/dock. However, if you
|
||||
# re-run --register-app from inside that new directory, the script
|
||||
# will correct the absolute paths and re-register itself.
|
||||
#
|
||||
# This file will also still function if the path changes when TBB is used as a
|
||||
# portable app, so long as it is run directly from that new directory, either
|
||||
# via the shell or via the file manager.
|
||||
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Tor Browser
|
||||
GenericName=Web Browser
|
||||
Comment=Tor Browser is +1 for privacy and −1 for mass surveillance
|
||||
Categories=Network;WebBrowser;Security;
|
||||
Exec=sh -c '"/opt/tor-browser/Browser/start-tor-browser" --detach || ([ ! -x "/opt/tor-browser/Browser/start-tor-browser" ] && "$(dirname "$*")"/Browser/start-tor-browser --detach)' dummy %k
|
||||
X-TorBrowser-ExecShell=./Browser/start-tor-browser --detach
|
||||
Icon=/opt/tor-browser/Browser/browser/chrome/icons/default/default128.png
|
||||
StartupWMClass=Tor Browser
|
Reference in New Issue
Block a user