Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
IntoJHyyry committed Mar 1, 2021
1 parent 78eea47 commit 838da63
Show file tree
Hide file tree
Showing 194 changed files with 178,600 additions and 49 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Drupal editor configuration normalization
# @see http://editorconfig.org/

# This is the top-most .editorconfig file; do not search in parent directories.
root = true

# All files.
[*]
end_of_line = LF
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[composer.{json,lock}]
indent_size = 4
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
yarn.lock binary
package-lock.json binary
dev/js/* binary
dev/stylesheets/* binary
dist/js/* binary
dist/stylesheets/* binary
acf-json/* binary
53 changes: 4 additions & 49 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,50 +1,5 @@
# These are some examples of commonly ignored file patterns.
# You should customize this list as applicable to your project.
# Learn more about .gitignore:
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore

# Node artifact files
node_modules/
dist/

# Compiled Java class files
*.class

# Compiled Python bytecode
*.py[cod]

# Log files
*.log

# Package files
*.jar

# Maven
target/
dist/

# JetBrains IDE
.idea/

# Unit test reports
TEST*.xml

# Generated by MacOS
.DS_Store

# Generated by Windows
Thumbs.db

# Applications
*.app
*.exe
*.war

# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv

.sass-cache/
**/*.map
bitbucket-config.json
bitbucket-deploy.log
6 changes: 6 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
RedirectMatch 404 /\.git
RedirectMatch 404 /\.sass-cache
RedirectMatch 404 \.scss
RedirectMatch 404 \.sql
RedirectMatch 404 /bitbucket-config\.json
RedirectMatch 404 /bitbucket-deploy\.log
21 changes: 21 additions & 0 deletions 404.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php get_header(); ?>

<div id="primary" class="content-area">
<main id="main" class="site-main container" role="main">
<div class="row content-row">
<div class="col-12 col-lg-9 page-content">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title">404 - <?php _e( 'Sivua ei löytynyt', 'ID' ); ?></h1>
</header><!-- .page-header -->
<div class="page-content">
<p><?php _e( 'Hakemaasi sisältöä ei löytynyt. Kokeile hakua!', 'ID' ); ?></p>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</div>
</div>
</main><!-- .site-main -->
</div><!-- .content-area -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>
Empty file.
Loading

0 comments on commit 838da63

Please sign in to comment.