Skip to content

Commit

Permalink
Merge pull request #92 from satsummit/develop
Browse files Browse the repository at this point in the history
Add plausible tracking
  • Loading branch information
danielfdsilva authored Apr 22, 2024
2 parents b57fde7 + 762dff2 commit 9c87d96
Show file tree
Hide file tree
Showing 7 changed files with 1,469 additions and 508 deletions.
15 changes: 0 additions & 15 deletions .build_scripts/deploy.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .build_scripts/lint.sh

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 'develop'

env:
NODE: 10
NODE: 14

jobs:
build:
Expand Down
13 changes: 7 additions & 6 deletions app/_includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
<!--[if gt IE 9]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Exploratory, and collaboratory, review of current and upcoming satellite tools for development, from capture, distribution, analysis and applications.">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>State of Satellite Imagery</title>
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
<script defer data-domain="landscape.satsummit.io" src="https://plausible.io/js/script.outbound-links.js"></script>

<link href='https://fonts.googleapis.com/css?family=Roboto:400,700,400italic,500,300,300italic' rel='stylesheet' type='text/css'>

<link href='https://api.tiles.mapbox.com/mapbox.js/v2.2.1/mapbox.css' rel='stylesheet' />
<!-- build:css /assets/styles/main.css -->
<link rel="stylesheet" href="/assets/styles/main.css">
<!-- endbuild -->
<!-- build:css /assets/styles/main.css -->
<link rel="stylesheet" href="/assets/styles/main.css">
<!-- endbuild -->
</head>
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ var revReplace = require('gulp-rev-replace')
var notifier = require('node-notifier')
var cp = require('child_process')
var YAML = require('yamljs')
var SassString = require('node-sass').types.String
var nodeSass = require('node-sass')
const sass = require('gulp-sass')(nodeSass)
var SassString = nodeSass.types.String
const { compile } = require('collecticons-processor')

// /////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -227,7 +229,7 @@ gulp.task('styles', function () {
this.emit('end')
}))
.pipe($.sourcemaps.init())
.pipe($.sass({
.pipe(sass({
outputStyle: 'expanded',
precision: 10,
functions: {
Expand Down
Loading

0 comments on commit 9c87d96

Please sign in to comment.