Skip to content
This repository was archived by the owner on Sep 1, 2020. It is now read-only.

Commit 2cca0d6

Browse files
Merge pull request #2 from 47deg/adds-sbt-microsite
Adds sbt-microsites Plugin and Resources
2 parents 635bb0b + 4f92410 commit 2cca0d6

12 files changed

+38
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
layout: home
3+
---
4+
15
# Typelevel Scala
26

37
## What is this repository?

build.sbt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name := "Scala"
2+
version := "1.0"
3+
scalaVersion := "2.11.8"
4+
5+
micrositeName := "Typelevel"
6+
micrositeDescription := "Our fork of the Scala compiler"
7+
micrositeAuthor := "Typelevel contributors"
8+
micrositeHomepage := "http://typelevel.org/scala"
9+
micrositeGithubOwner := "typelevel"
10+
micrositeGithubRepo := "scala"
11+
micrositeExtratMdFiles := Map(file("README.md") -> "index.md")
12+
micrositeHighlightTheme := "atom-one-light"
13+
micrositePalette := Map(
14+
"brand-primary" -> "#FC4053",
15+
"brand-secondary" -> "#B92239",
16+
"brand-tertiary" -> "#8C192F",
17+
"gray-dark" -> "#464646",
18+
"gray" -> "#7E7E7E",
19+
"gray-light" -> "#E8E8E8",
20+
"gray-lighter" -> "#F6F6F6",
21+
"white-color" -> "#FFFFFF")
22+
23+
enablePlugins(MicrositesPlugin)

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version = 0.13.12

project/plugins.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
addSbtPlugin("com.fortysevendeg" % "sbt-microsites" % "0.1.0-SNAPSHOT")
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,400i,700,700i);
2+
3+
h1, h2, h3, h4, h5, h6, .brand {
4+
font-family: 'Droid Serif', serif;
5+
}
6+
7+
.technologies {
8+
display: none;
9+
}
Loading
Loading
Loading
Loading
131 KB
Loading
Loading
Loading

0 commit comments

Comments
 (0)