Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .nojekyll
Empty file.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
---
layout: default
title: Z3 Theorem Prover
---

# z3prover.github.io
This is the repository for all web pages related to Z3.
27 changes: 27 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Z3 Prover GitHub Pages Configuration
title: Z3 Theorem Prover
description: Z3 is a theorem prover from Microsoft Research
baseurl: ""
url: "https://z3prover.github.io"

# Build settings
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge

# Include markdown files in the build
include:
- README.md
- slides/README.md
- slides/index.md
- papers/README.md
- api/trace_tags.md
- api/md/Parameters.md
- slides/guest-lectures-wien-2025/projects.md
- slides/guest-lectures-wien-2025/README.md

# Exclude files from the build
exclude:
- .gitignore
- .github/
121 changes: 121 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #333;
max-width: 900px;
margin: 0 auto;
padding: 2rem;
background-color: #fff;
}

h1 {
color: #2c3e50;
border-bottom: 2px solid #3498db;
padding-bottom: 0.5rem;
margin-bottom: 1.5rem;
}

h2 {
color: #34495e;
margin-top: 2rem;
margin-bottom: 1rem;
}

h3 {
color: #34495e;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}

ul, ol {
padding-left: 1.5rem;
margin-bottom: 1rem;
}

li {
margin-bottom: 0.5rem;
}

a {
color: #3498db;
text-decoration: none;
}

a:hover {
text-decoration: underline;
color: #2980b9;
}

code {
background-color: #f4f4f4;
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-family: 'Courier New', Courier, monospace;
font-size: 0.9em;
}

pre {
background-color: #f4f4f4;
padding: 1rem;
border-radius: 5px;
overflow-x: auto;
}

pre code {
background-color: transparent;
padding: 0;
}

table {
border-collapse: collapse;
width: 100%;
margin: 1rem 0;
}

th, td {
border: 1px solid #ddd;
padding: 0.75rem;
text-align: left;
}

th {
background-color: #f4f4f4;
font-weight: bold;
}

blockquote {
border-left: 4px solid #3498db;
margin: 1rem 0;
padding-left: 1rem;
color: #555;
}

.site-nav {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid #ddd;
}

.site-nav a {
margin-right: 1rem;
}
</style>
</head>
<body>
<div class="site-nav">
<a href="/">Home</a>
<a href="/slides/">Slides</a>
<a href="/papers/">Papers</a>
<a href="https://github.com/Z3Prover/z3/wiki">Wiki</a>
</div>

{{ content }}
</body>
</html>
5 changes: 5 additions & 0 deletions api/md/Parameters.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: default
title: Z3 Options
---

Z3 Options

## Global Parameters
Expand Down
5 changes: 5 additions & 0 deletions api/trace_tags.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: default
title: Z3 Trace Tags Documentation
---

# Z3 Trace Tags Documentation

This document contains the trace tags and their descriptions used in Z3.
Expand Down
5 changes: 5 additions & 0 deletions papers/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: default
title: Online Papers
---

# Online papers

* [Programming Z3](https://z3prover.github.io/papers/programmingz3.html)
Expand Down
4 changes: 4 additions & 0 deletions slides/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
layout: default
title: Z3 Slides
---

# Slides

Expand Down
5 changes: 5 additions & 0 deletions slides/guest-lectures-wien-2025/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: default
title: Guest Lecture material at TU Wien October 2025
---

# Guest Lecture material at TU Wien October 2025

[Lecture Overview](https://z3prover.github.io/slides/guest-lectures-wien-2025/lectures.html)
Expand Down
5 changes: 5 additions & 0 deletions slides/guest-lectures-wien-2025/projects.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
layout: default
title: Project Ideas
---

# Project ideas


Expand Down
5 changes: 5 additions & 0 deletions slides/index.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
---
layout: default
title: Z3 Slides
---

{% include_relative README.md %}