Basic site
parent
6f0b1467e8
commit
3a81824019
@ -1,53 +1,53 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// AuthenticationService è l'interfaccia del servizio di autenticazione sul server principale
|
||||
type AuthenticationService struct {
|
||||
URL string
|
||||
}
|
||||
// User as in auth-poisson
|
||||
type User struct {
|
||||
Username string
|
||||
UID int
|
||||
|
||||
// NewAuthenticationService crea un nuovo servizio di autenticazione e controlla se è attivo
|
||||
func NewAuthenticationService(url string) (*AuthenticationService, error) {
|
||||
service := new(AuthenticationService)
|
||||
service.URL = url
|
||||
Name string
|
||||
Surname string
|
||||
FullName string
|
||||
|
||||
res, err := service.Get("status")
|
||||
// ...
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
// AuthService rappresenta un servizio di autenticazione
|
||||
type AuthService interface {
|
||||
GetUsers() []User
|
||||
|
||||
status, _ := ioutil.ReadAll(res.Body)
|
||||
GetUser(username string) User
|
||||
|
||||
if string(status) != "online" {
|
||||
log.Fatalf("Authentication service isn't online, status: '%s'", status)
|
||||
}
|
||||
// LoginUser if successful returns the token for this user that will be stored in an HTTP cookie.
|
||||
LoginUser(username, password string) (string, error)
|
||||
}
|
||||
|
||||
return service, nil
|
||||
// LdapService ...
|
||||
type LdapService struct {
|
||||
URL string
|
||||
}
|
||||
|
||||
// Get ...
|
||||
func (service *AuthenticationService) Get(url string) (*http.Response, error) {
|
||||
return http.Get(service.URL + "/" + url)
|
||||
// FakeService ...
|
||||
type FakeService struct {
|
||||
URL string
|
||||
}
|
||||
|
||||
// Authenticate ...
|
||||
func (service *AuthenticationService) Authenticate(username, password string) bool {
|
||||
// NewAuthenticationService crea un nuovo servizio di autenticazione e controlla se è attivo
|
||||
// func NewAuthenticationService(url string) (*LdapService, error) {
|
||||
// service := new(LdapService)
|
||||
// service.URL = url
|
||||
|
||||
json, _ := json.Marshal(struct {
|
||||
Username, Password string
|
||||
}{username, password})
|
||||
// res, err := service.Get("status")
|
||||
|
||||
res, _ := http.Post(service.URL+"/auth", "application/json", bytes.NewReader(json))
|
||||
// if err != nil {
|
||||
// return nil, err
|
||||
// }
|
||||
|
||||
result, _ := ioutil.ReadAll(res.Body)
|
||||
// status, _ := ioutil.ReadAll(res.Body)
|
||||
|
||||
return string(result) == "true"
|
||||
}
|
||||
// if string(status) != "true" {
|
||||
// log.Fatalf("Authentication service isn't online, status: '%s'", status)
|
||||
// }
|
||||
|
||||
// return service, nil
|
||||
// }
|
||||
|
@ -1,6 +1,8 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
||||
+++
|
||||
title = "{{ humanize .Name | title }}"
|
||||
description = ""
|
||||
author = ""
|
||||
date = {{ .Date }}
|
||||
tags = []
|
||||
draft = true
|
||||
+++
|
||||
|
@ -0,0 +1,11 @@
|
||||
+++
|
||||
title = "Come usare il servizio Git"
|
||||
description = "Le base di git e come utilizzarlo con Poisson."
|
||||
date = 2020-06-25T20:23:58+02:00
|
||||
categories = "Guide"
|
||||
author = "???"
|
||||
+++
|
||||
|
||||
# Come usare il serivizio Git
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec dolor in magna lobortis egestas. Suspendisse eu erat tempor, tristique neque eu, convallis nulla. Curabitur vel bibendum lacus, at semper mauris. Suspendisse aliquet commodo ex, sed sagittis metus aliquam id. Maecenas feugiat rutrum lorem vel imperdiet. Nullam ornare lectus ut enim finibus, et porttitor mi tincidunt.
|
@ -0,0 +1,11 @@
|
||||
+++
|
||||
title = "Annuncio nuovo sito del PHC"
|
||||
description = "Un nuovo sito."
|
||||
date = 2020-06-25T20:23:58+02:00
|
||||
categories = "Progetti"
|
||||
author = "???"
|
||||
+++
|
||||
|
||||
# Il nuovo sito del PHC
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec dolor in magna lobortis egestas. Suspendisse eu erat tempor, tristique neque eu, convallis nulla. Curabitur vel bibendum lacus, at semper mauris. Suspendisse aliquet commodo ex, sed sagittis metus aliquam id. Maecenas feugiat rutrum lorem vel imperdiet. Nullam ornare lectus ut enim finibus, et porttitor mi tincidunt.
|
@ -0,0 +1,180 @@
|
||||
<!DOCTYPE html>
|
||||
<html prefix="og: http://ogp.me/ns#">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Come usare il servizio Git · My Name</title>
|
||||
<meta name="description" content="Le base di git e come utilizzarlo con Poisson.">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="generator" content="Hugo 0.71.1" />
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Come usare il servizio Git">
|
||||
<meta property="og:description" content="Le base di git e come utilizzarlo con Poisson.">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="/blog/2020/06/25/come-usare-il-servizio-git/">
|
||||
<link rel="stylesheet" href="/blog/dist/site.css">
|
||||
<link rel="stylesheet" href="/blog/dist/syntax.css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="wrapper">
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
|
||||
<a class="button-square" href="/blog/index.xml"><i class="fa fa-rss"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Github" title="Github" href="https://github.com/PHC-DM" rel="me">
|
||||
<i class="fa fa-github-alt"></i>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Email" title="Email" href="mailto:macchinisti@poisson.phc.dm.unipi.it">
|
||||
<i class="fa fa-envelope"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<ul class="site-nav">
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="News" href="/blog/">News</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Guide" href="/blog/categories/guide/">Guide</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Progetti" href="/blog/categories/progetti/">Progetti</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Contattaci" href="/blog/page/contact/">Contattaci</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="About" href="/blog/page/about/">About</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="container">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<article class="post-container" itemscope="" itemtype="http://schema.org/BlogPosting">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title" itemprop="name headline">Come usare il servizio Git</h1>
|
||||
|
||||
<p class="post-description" itemprop="description">Le base di git e come utilizzarlo con Poisson.</p>
|
||||
|
||||
<p class="post-date">
|
||||
<span>Published <time datetime="2020-06-25" itemprop="datePublished">Thu, Jun 25, 2020</time></span>
|
||||
<span>by</span>
|
||||
<span itemscope="" itemprop="author" itemtype="https://schema.org/Person">
|
||||
<span itemprop="name">
|
||||
<a href="/page/contact" itemprop="url" rel="author">???</a>
|
||||
</span>
|
||||
</span>
|
||||
</p>
|
||||
|
||||
<p class="post-reading post-line">
|
||||
<span>Tempo di letturna ~ 1 min</span>
|
||||
</p>
|
||||
|
||||
</header>
|
||||
|
||||
<div class="post-content clearfix" itemprop="articleBody">
|
||||
|
||||
|
||||
<h1 id="come-usare-il-serivizio-git">Come usare il serivizio Git</h1>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec dolor in magna lobortis egestas. Suspendisse eu erat tempor, tristique neque eu, convallis nulla. Curabitur vel bibendum lacus, at semper mauris. Suspendisse aliquet commodo ex, sed sagittis metus aliquam id. Maecenas feugiat rutrum lorem vel imperdiet. Nullam ornare lectus ut enim finibus, et porttitor mi tincidunt.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<footer class="post-footer clearfix">
|
||||
|
||||
|
||||
<div class="share">
|
||||
|
||||
<a class="icon-twitter" href="https://twitter.com/share?text=Come%20usare%20il%20servizio%20Git&url=%2fblog%2f2020%2f06%2f25%2fcome-usare-il-servizio-git%2f"
|
||||
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
|
||||
<i class="fa fa-twitter"></i>
|
||||
<span class="hidden">Twitter</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=%2fblog%2f2020%2f06%2f25%2fcome-usare-il-servizio-git%2f"
|
||||
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
|
||||
<i class="fa fa-facebook"></i>
|
||||
<span class="hidden">Facebook</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a class="icon-google-plus" href="https://plus.google.com/share?url=%2fblog%2f2020%2f06%2f25%2fcome-usare-il-servizio-git%2f"
|
||||
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
|
||||
<i class="fa fa-google-plus"></i>
|
||||
<span class="hidden">Google+</span>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
</article>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
<a class="button-square button-jump-top js-jump-top" href="#">
|
||||
<i class="fa fa-angle-up"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<p class="footer-copyright">
|
||||
<span>© 2020 / Powered by <a href="https://gohugo.io/">Hugo</a></span>
|
||||
</p>
|
||||
<p class="footer-copyright">
|
||||
<span><a href="https://github.com/roryg/ghostwriter">Ghostwriter theme</a> By <a href="http://jollygoodthemes.com">JollyGoodThemes</a></span>
|
||||
<span>/ <a href="https://github.com/jbub/ghostwriter">Ported</a> to Hugo By <a href="https://github.com/jbub">jbub</a></span>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/blog/js/jquery-1.11.3.min.js"></script>
|
||||
<script src="/blog/js/jquery.fitvids.js"></script>
|
||||
<script src="/blog/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,180 @@
|
||||
<!DOCTYPE html>
|
||||
<html prefix="og: http://ogp.me/ns#">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Annuncio nuovo sito del PHC · My Name</title>
|
||||
<meta name="description" content="Un nuovo sito.">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="generator" content="Hugo 0.71.1" />
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Annuncio nuovo sito del PHC">
|
||||
<meta property="og:description" content="Un nuovo sito.">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="/blog/2020/06/25/nuovo-sito-di-poisson/">
|
||||
<link rel="stylesheet" href="/blog/dist/site.css">
|
||||
<link rel="stylesheet" href="/blog/dist/syntax.css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="wrapper">
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
|
||||
<a class="button-square" href="/blog/index.xml"><i class="fa fa-rss"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Github" title="Github" href="https://github.com/PHC-DM" rel="me">
|
||||
<i class="fa fa-github-alt"></i>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Email" title="Email" href="mailto:macchinisti@poisson.phc.dm.unipi.it">
|
||||
<i class="fa fa-envelope"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<ul class="site-nav">
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="News" href="/blog/">News</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Guide" href="/blog/categories/guide/">Guide</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Progetti" href="/blog/categories/progetti/">Progetti</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Contattaci" href="/blog/page/contact/">Contattaci</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="About" href="/blog/page/about/">About</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="container">
|
||||
|
||||
|
||||
<div class="container">
|
||||
<article class="post-container" itemscope="" itemtype="http://schema.org/BlogPosting">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title" itemprop="name headline">Annuncio nuovo sito del PHC</h1>
|
||||
|
||||
<p class="post-description" itemprop="description">Un nuovo sito.</p>
|
||||
|
||||
<p class="post-date">
|
||||
<span>Published <time datetime="2020-06-25" itemprop="datePublished">Thu, Jun 25, 2020</time></span>
|
||||
<span>by</span>
|
||||
<span itemscope="" itemprop="author" itemtype="https://schema.org/Person">
|
||||
<span itemprop="name">
|
||||
<a href="/page/contact" itemprop="url" rel="author">???</a>
|
||||
</span>
|
||||
</span>
|
||||
</p>
|
||||
|
||||
<p class="post-reading post-line">
|
||||
<span>Tempo di letturna ~ 1 min</span>
|
||||
</p>
|
||||
|
||||
</header>
|
||||
|
||||
<div class="post-content clearfix" itemprop="articleBody">
|
||||
|
||||
|
||||
<h1 id="il-nuovo-sito-del-phc">Il nuovo sito del PHC</h1>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec dolor in magna lobortis egestas. Suspendisse eu erat tempor, tristique neque eu, convallis nulla. Curabitur vel bibendum lacus, at semper mauris. Suspendisse aliquet commodo ex, sed sagittis metus aliquam id. Maecenas feugiat rutrum lorem vel imperdiet. Nullam ornare lectus ut enim finibus, et porttitor mi tincidunt.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<footer class="post-footer clearfix">
|
||||
|
||||
|
||||
<div class="share">
|
||||
|
||||
<a class="icon-twitter" href="https://twitter.com/share?text=Annuncio%20nuovo%20sito%20del%20PHC&url=%2fblog%2f2020%2f06%2f25%2fnuovo-sito-di-poisson%2f"
|
||||
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
|
||||
<i class="fa fa-twitter"></i>
|
||||
<span class="hidden">Twitter</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=%2fblog%2f2020%2f06%2f25%2fnuovo-sito-di-poisson%2f"
|
||||
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
|
||||
<i class="fa fa-facebook"></i>
|
||||
<span class="hidden">Facebook</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a class="icon-google-plus" href="https://plus.google.com/share?url=%2fblog%2f2020%2f06%2f25%2fnuovo-sito-di-poisson%2f"
|
||||
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
|
||||
<i class="fa fa-google-plus"></i>
|
||||
<span class="hidden">Google+</span>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
</article>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
<a class="button-square button-jump-top js-jump-top" href="#">
|
||||
<i class="fa fa-angle-up"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<p class="footer-copyright">
|
||||
<span>© 2020 / Powered by <a href="https://gohugo.io/">Hugo</a></span>
|
||||
</p>
|
||||
<p class="footer-copyright">
|
||||
<span><a href="https://github.com/roryg/ghostwriter">Ghostwriter theme</a> By <a href="http://jollygoodthemes.com">JollyGoodThemes</a></span>
|
||||
<span>/ <a href="https://github.com/jbub/ghostwriter">Ported</a> to Hugo By <a href="https://github.com/jbub">jbub</a></span>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/blog/js/jquery-1.11.3.min.js"></script>
|
||||
<script src="/blog/js/jquery.fitvids.js"></script>
|
||||
<script src="/blog/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,148 @@
|
||||
<!DOCTYPE html>
|
||||
<html prefix="og: http://ogp.me/ns#">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Guide · My Name</title>
|
||||
<meta name="description" content="[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="generator" content="Hugo 0.71.1" />
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Guide">
|
||||
<meta property="og:description" content="[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="/blog/categories/guide/">
|
||||
<link rel="stylesheet" href="/blog/dist/site.css">
|
||||
<link rel="stylesheet" href="/blog/dist/syntax.css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
||||
|
||||
<link href="/blog/categories/guide/index.xml" rel="alternate" type="application/rss+xml">
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="wrapper">
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
|
||||
<a class="button-square" href="/blog/index.xml"><i class="fa fa-rss"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Github" title="Github" href="https://github.com/PHC-DM" rel="me">
|
||||
<i class="fa fa-github-alt"></i>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Email" title="Email" href="mailto:macchinisti@poisson.phc.dm.unipi.it">
|
||||
<i class="fa fa-envelope"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<ul class="site-nav">
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="News" href="/blog/">News</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Guide" href="/blog/categories/guide/">Guide</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Progetti" href="/blog/categories/progetti/">Progetti</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Contattaci" href="/blog/page/contact/">Contattaci</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="About" href="/blog/page/about/">About</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="container">
|
||||
|
||||
|
||||
<div id="post-index" class="container">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title" itemprop="name">Blog del PHC</h1>
|
||||
<p>[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.</p>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<h3 style="text-align: center;">Guide</h3>
|
||||
|
||||
<ol class="post-list">
|
||||
|
||||
|
||||
<li class="post-stub">
|
||||
<a href="/blog/2020/06/25/come-usare-il-servizio-git/">
|
||||
<h4 class="post-stub-title">Come usare il servizio Git</h4>
|
||||
|
||||
<p class="post-stub-description">Le base di git e come utilizzarlo con Poisson.</p>
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
|
||||
<div class="post-navigation">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
<a class="button-square button-jump-top js-jump-top" href="#">
|
||||
<i class="fa fa-angle-up"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<p class="footer-copyright">
|
||||
<span>© 2020 / Powered by <a href="https://gohugo.io/">Hugo</a></span>
|
||||
</p>
|
||||
<p class="footer-copyright">
|
||||
<span><a href="https://github.com/roryg/ghostwriter">Ghostwriter theme</a> By <a href="http://jollygoodthemes.com">JollyGoodThemes</a></span>
|
||||
<span>/ <a href="https://github.com/jbub/ghostwriter">Ported</a> to Hugo By <a href="https://github.com/jbub">jbub</a></span>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/blog/js/jquery-1.11.3.min.js"></script>
|
||||
<script src="/blog/js/jquery.fitvids.js"></script>
|
||||
<script src="/blog/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Guide on Blog del PHC</title>
|
||||
<link>/blog/categories/guide/</link>
|
||||
<description>Recent content in Guide on Blog del PHC</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<copyright>PHC</copyright>
|
||||
<lastBuildDate>Thu, 25 Jun 2020 20:23:58 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="/blog/categories/guide/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>Come usare il servizio Git</title>
|
||||
<link>/blog/2020/06/25/come-usare-il-servizio-git/</link>
|
||||
<pubDate>Thu, 25 Jun 2020 20:23:58 +0200</pubDate>
|
||||
|
||||
<guid>/blog/2020/06/25/come-usare-il-servizio-git/</guid>
|
||||
<description>Come usare il serivizio Git Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec dolor in magna lobortis egestas. Suspendisse eu erat tempor, tristique neque eu, convallis nulla. Curabitur vel bibendum lacus, at semper mauris. Suspendisse aliquet commodo ex, sed sagittis metus aliquam id. Maecenas feugiat rutrum lorem vel imperdiet. Nullam ornare lectus ut enim finibus, et porttitor mi tincidunt.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>/blog/categories/guide/</title><link rel="canonical" href="/blog/categories/guide/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/categories/guide/" /></head></html>
|
@ -0,0 +1,155 @@
|
||||
<!DOCTYPE html>
|
||||
<html prefix="og: http://ogp.me/ns#">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Categories · My Name</title>
|
||||
<meta name="description" content="[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="generator" content="Hugo 0.71.1" />
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Categories">
|
||||
<meta property="og:description" content="[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="/blog/categories/">
|
||||
<link rel="stylesheet" href="/blog/dist/site.css">
|
||||
<link rel="stylesheet" href="/blog/dist/syntax.css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
||||
|
||||
<link href="/blog/categories/index.xml" rel="alternate" type="application/rss+xml">
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="wrapper">
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
|
||||
<a class="button-square" href="/blog/index.xml"><i class="fa fa-rss"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Github" title="Github" href="https://github.com/PHC-DM" rel="me">
|
||||
<i class="fa fa-github-alt"></i>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Email" title="Email" href="mailto:macchinisti@poisson.phc.dm.unipi.it">
|
||||
<i class="fa fa-envelope"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<ul class="site-nav">
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="News" href="/blog/">News</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Guide" href="/blog/categories/guide/">Guide</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Progetti" href="/blog/categories/progetti/">Progetti</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Contattaci" href="/blog/page/contact/">Contattaci</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="About" href="/blog/page/about/">About</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="container">
|
||||
|
||||
|
||||
<div id="post-index" class="container">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title" itemprop="name">Blog del PHC</h1>
|
||||
<p>[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.</p>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<h3 style="text-align: center;">Categories</h3>
|
||||
|
||||
<ol class="post-list">
|
||||
|
||||
|
||||
<li class="post-stub">
|
||||
<a href="/blog/categories/guide/">
|
||||
<h4 class="post-stub-title">Guide</h4>
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="post-stub">
|
||||
<a href="/blog/categories/progetti/">
|
||||
<h4 class="post-stub-title">Progetti</h4>
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
|
||||
<div class="post-navigation">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
<a class="button-square button-jump-top js-jump-top" href="#">
|
||||
<i class="fa fa-angle-up"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<p class="footer-copyright">
|
||||
<span>© 2020 / Powered by <a href="https://gohugo.io/">Hugo</a></span>
|
||||
</p>
|
||||
<p class="footer-copyright">
|
||||
<span><a href="https://github.com/roryg/ghostwriter">Ghostwriter theme</a> By <a href="http://jollygoodthemes.com">JollyGoodThemes</a></span>
|
||||
<span>/ <a href="https://github.com/jbub/ghostwriter">Ported</a> to Hugo By <a href="https://github.com/jbub">jbub</a></span>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/blog/js/jquery-1.11.3.min.js"></script>
|
||||
<script src="/blog/js/jquery.fitvids.js"></script>
|
||||
<script src="/blog/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Categories on Blog del PHC</title>
|
||||
<link>/blog/categories/</link>
|
||||
<description>Recent content in Categories on Blog del PHC</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<copyright>PHC</copyright>
|
||||
<lastBuildDate>Thu, 25 Jun 2020 20:23:58 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="/blog/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>Guide</title>
|
||||
<link>/blog/categories/guide/</link>
|
||||
<pubDate>Thu, 25 Jun 2020 20:23:58 +0200</pubDate>
|
||||
|
||||
<guid>/blog/categories/guide/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Progetti</title>
|
||||
<link>/blog/categories/progetti/</link>
|
||||
<pubDate>Thu, 25 Jun 2020 20:23:58 +0200</pubDate>
|
||||
|
||||
<guid>/blog/categories/progetti/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>/blog/categories/</title><link rel="canonical" href="/blog/categories/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/categories/" /></head></html>
|
@ -0,0 +1,148 @@
|
||||
<!DOCTYPE html>
|
||||
<html prefix="og: http://ogp.me/ns#">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Progetti · My Name</title>
|
||||
<meta name="description" content="[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="generator" content="Hugo 0.71.1" />
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="og:title" content="Progetti">
|
||||
<meta property="og:description" content="[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="/blog/categories/progetti/">
|
||||
<link rel="stylesheet" href="/blog/dist/site.css">
|
||||
<link rel="stylesheet" href="/blog/dist/syntax.css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
||||
|
||||
<link href="/blog/categories/progetti/index.xml" rel="alternate" type="application/rss+xml">
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div id="wrapper">
|
||||
<header class="site-header">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
|
||||
<a class="button-square" href="/blog/index.xml"><i class="fa fa-rss"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Github" title="Github" href="https://github.com/PHC-DM" rel="me">
|
||||
<i class="fa fa-github-alt"></i>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="button-square button-social hint--top" data-hint="Email" title="Email" href="mailto:macchinisti@poisson.phc.dm.unipi.it">
|
||||
<i class="fa fa-envelope"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<ul class="site-nav">
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="News" href="/blog/">News</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Guide" href="/blog/categories/guide/">Guide</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Progetti" href="/blog/categories/progetti/">Progetti</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="Contattaci" href="/blog/page/contact/">Contattaci</a>
|
||||
</li>
|
||||
|
||||
<li class="site-nav-item">
|
||||
<a title="About" href="/blog/page/about/">About</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="container">
|
||||
|
||||
|
||||
<div id="post-index" class="container">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title" itemprop="name">Blog del PHC</h1>
|
||||
<p>[WIP - Lo stile è da cambiare!] Qui postiamo notizie importanti, progetti e qualche guida.</p>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<h3 style="text-align: center;">Progetti</h3>
|
||||
|
||||
<ol class="post-list">
|
||||
|
||||
|
||||
<li class="post-stub">
|
||||
<a href="/blog/2020/06/25/nuovo-sito-di-poisson/">
|
||||
<h4 class="post-stub-title">Annuncio nuovo sito del PHC</h4>
|
||||
|
||||
<p class="post-stub-description">Un nuovo sito.</p>
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
|
||||
<div class="post-navigation">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="site-title-wrapper">
|
||||
<h1 class="site-title">
|
||||
<a title="Blog del PHC" href="/blog/">Blog del PHC</a>
|
||||
</h1>
|
||||
<a class="button-square button-jump-top js-jump-top" href="#">
|
||||
<i class="fa fa-angle-up"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<p class="footer-copyright">
|
||||
<span>© 2020 / Powered by <a href="https://gohugo.io/">Hugo</a></span>
|
||||
</p>
|
||||
<p class="footer-copyright">
|
||||
<span><a href="https://github.com/roryg/ghostwriter">Ghostwriter theme</a> By <a href="http://jollygoodthemes.com">JollyGoodThemes</a></span>
|
||||
<span>/ <a href="https://github.com/jbub/ghostwriter">Ported</a> to Hugo By <a href="https://github.com/jbub">jbub</a></span>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/blog/js/jquery-1.11.3.min.js"></script>
|
||||
<script src="/blog/js/jquery.fitvids.js"></script>
|
||||
<script src="/blog/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Progetti on Blog del PHC</title>
|
||||
<link>/blog/categories/progetti/</link>
|
||||
<description>Recent content in Progetti on Blog del PHC</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<copyright>PHC</copyright>
|
||||
<lastBuildDate>Thu, 25 Jun 2020 20:23:58 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="/blog/categories/progetti/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>Annuncio nuovo sito del PHC</title>
|
||||
<link>/blog/2020/06/25/nuovo-sito-di-poisson/</link>
|
||||
<pubDate>Thu, 25 Jun 2020 20:23:58 +0200</pubDate>
|
||||
|
||||
<guid>/blog/2020/06/25/nuovo-sito-di-poisson/</guid>
|
||||
<description>Il nuovo sito del PHC Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec dolor in magna lobortis egestas. Suspendisse eu erat tempor, tristique neque eu, convallis nulla. Curabitur vel bibendum lacus, at semper mauris. Suspendisse aliquet commodo ex, sed sagittis metus aliquam id. Maecenas feugiat rutrum lorem vel imperdiet. Nullam ornare lectus ut enim finibus, et porttitor mi tincidunt.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>/blog/categories/progetti/</title><link rel="canonical" href="/blog/categories/progetti/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/categories/progetti/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/</title><link rel="canonical" href="https://phc.dm.unipi.it/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/</title><link rel="canonical" href="/blog/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/page/</title><link rel="canonical" href="https://phc.dm.unipi.it/page/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/page/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/page/</title><link rel="canonical" href="/blog/page/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/page/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/post/</title><link rel="canonical" href="https://phc.dm.unipi.it/post/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/post/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/post/</title><link rel="canonical" href="/blog/post/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/post/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/project/</title><link rel="canonical" href="https://phc.dm.unipi.it/project/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/project/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/project/</title><link rel="canonical" href="/blog/project/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/project/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/development/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/development/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/development/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/development/</title><link rel="canonical" href="/blog/tags/development/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/development/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/go/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/go/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/go/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/go/</title><link rel="canonical" href="/blog/tags/go/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/go/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/golang/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/golang/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/golang/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/golang/</title><link rel="canonical" href="/blog/tags/golang/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/golang/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/hugo/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/hugo/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/hugo/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/hugo/</title><link rel="canonical" href="/blog/tags/hugo/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/hugo/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/</title><link rel="canonical" href="/blog/tags/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/templates/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/templates/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/templates/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/templates/</title><link rel="canonical" href="/blog/tags/templates/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/templates/" /></head></html>
|
@ -1 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://phc.dm.unipi.it/tags/themes/</title><link rel="canonical" href="https://phc.dm.unipi.it/tags/themes/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://phc.dm.unipi.it/tags/themes/" /></head></html>
|
||||
<!DOCTYPE html><html><head><title>/blog/tags/themes/</title><link rel="canonical" href="/blog/tags/themes/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/blog/tags/themes/" /></head></html>
|
Loading…
Reference in New Issue